Skip to content

Commit

Permalink
Update sources (#1683)
Browse files Browse the repository at this point in the history
* Update sources

* wip

* piaf

---------

Co-authored-by: UpdateBot <ulrikstrid@users.noreply.github.com>
  • Loading branch information
anmonteiro and ulrikstrid authored Sep 30, 2024
1 parent 9eb3220 commit 04862d5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
};

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?rev=b5c4f45cfcaa5a44632c7119922987e131249cd2";
nixpkgs.url = "github:NixOS/nixpkgs?rev=16524a25426bd886b43dd41ebab1472a6a1a8fad";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down
19 changes: 19 additions & 0 deletions ocaml/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,11 @@ with oself;
'';
});

eio-ssl =
if lib.versionAtLeast ocaml.version "5.0" then
callPackage ./eio-ssl { }
else null;

extlib = osuper.extlib.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "ygrek";
Expand Down Expand Up @@ -1028,6 +1033,11 @@ with oself;
h2-lwt-unix = callPackage ./h2/lwt-unix.nix { };
h2-mirage = callPackage ./h2/mirage.nix { };
h2-async = callPackage ./h2/async.nix { };
h2-eio =
if lib.versionAtLeast ocaml.version "5.0" then
callPackage ./h2/eio.nix { }
else null;

hpack = callPackage ./h2/hpack.nix { };

hachis = buildDunePackage {
Expand Down Expand Up @@ -1089,6 +1099,10 @@ with oself;
httpun-lwt-unix = callPackage ./httpun/lwt-unix.nix { };
httpun-mirage = callPackage ./httpun/mirage.nix { };
httpun-async = callPackage ./httpun/async.nix { };
httpun-eio =
if lib.versionAtLeast ocaml.version "5.0" then
callPackage ./httpun/eio.nix { }
else null;

hxd = osuper.hxd.overrideAttrs (o: {
buildInputs = o.buildInputs ++ [ dune-configurator ];
Expand Down Expand Up @@ -2085,6 +2099,11 @@ with oself;

pg_query = callPackage ./pg_query { };

piaf =
if lib.versionAtLeast ocaml.version "5.0" then
callPackage ./piaf { }
else null;

plist-xml = buildDunePackage {
pname = "plist-xml";
version = "";
Expand Down
7 changes: 0 additions & 7 deletions ocaml/ocaml5.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ with oself;
propagatedBuildInputs = [ cohttp eio_main ptime ];
};

eio-ssl = callPackage ./eio-ssl { };

eio-trace =
let
stdenv' = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv;
Expand All @@ -52,10 +50,6 @@ with oself;
propagatedBuildInputs = [ eio_main graphql ];
};

h2-eio = callPackage ./h2/eio.nix { };

httpun-eio = callPackage ./httpun/eio.nix { };

kafka-eio = buildDunePackage {
pname = "kafka-eio";
inherit (kafka) hardeningDisable version src;
Expand Down Expand Up @@ -92,7 +86,6 @@ with oself;
checkInputs = [ mdx qcheck-core trace trace-tef ];
};

piaf = callPackage ./piaf { };
carl = callPackage ./piaf/carl.nix { };

picos = buildDunePackage {
Expand Down

0 comments on commit 04862d5

Please sign in to comment.