Skip to content

Commit

Permalink
bump h2 and gluten
Browse files Browse the repository at this point in the history
  • Loading branch information
wokalski committed Apr 19, 2024
1 parent 9313451 commit 60604df
Showing 1 changed file with 36 additions and 38 deletions.
74 changes: 36 additions & 38 deletions overlay.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,39 @@
self: super: let
inherit (super) fetchFromGitHub;
self: super:
let inherit (super) fetchFromGitHub;
in {
ocaml-ng =
super.ocaml-ng
// {
ocamlPackages_5_1 =
super.ocaml-ng.ocamlPackages_5_1.overrideScope'
(oself: super:
{
h2 = super.h2.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "ocaml-h2";
rev = "fc872de80a4d64725cd0651ab21399676be9de39";
sha256 = "sha256-4FmTkc3sCHzuzDJoYtiLnsewXc8sjWS7FgcOJJTZ5fk=";
fetchSubmodules = true;
};
});
h2-eio = super.h2-eio.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "ocaml-h2";
rev = "fc872de80a4d64725cd0651ab21399676be9de39";
sha256 = "sha256-4FmTkc3sCHzuzDJoYtiLnsewXc8sjWS7FgcOJJTZ5fk=";
fetchSubmodules = true;
};
});
gluten-eio = super.gluten-eio.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "gluten";
rev = "94f64daa376a6c860b0af7cdfb9daea54ec939b0";
sha256 = "sha256-nJp+BLfqzjgnY9Mamrgbj2q5KDip8i3EMpjYL+ntV2w=";
fetchSubmodules = true;
};
});
});
};
ocaml-ng = super.ocaml-ng // {
ocamlPackages_5_1 = super.ocaml-ng.ocamlPackages_5_1.overrideScope'
(oself: super: {
h2 = super.h2.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "ocaml-h2";
rev = "5fc0a4976ed25248872bac487ba344ebcaa76de0";
sha256 = "sha256-SZKv6Cv45hRrM1e/P7bmmWT96IERmF41wUvyaQGHj3g=";
fetchSubmodules = true;
};
});
h2-eio = super.h2-eio.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "ocaml-h2";
rev = "5fc0a4976ed25248872bac487ba344ebcaa76de0";
sha256 = "sha256-SZKv6Cv45hRrM1e/P7bmmWT96IERmF41wUvyaQGHj3g=";

fetchSubmodules = true;
};
});
gluten-eio = super.gluten-eio.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "dialohq";
repo = "gluten";
rev = "e9ae4690ebd65b143e69955b1dc26ac77c25fa91";
sha256 = "sha256-hT62/TWFD11Irn+fy43nNGB8PKF1UAux0i9+9U3a/Ho=";

fetchSubmodules = true;
};
});
});
};
}

0 comments on commit 60604df

Please sign in to comment.