ocamlPackages.conduit: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:37:05 +00:00
parent 94f385e1f4
commit 3816ec75e3
@@ -10,14 +10,14 @@
ipaddr-sexp,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "conduit";
version = "8.0.0";
minimalOCamlVersion = "4.13";
src = fetchurl {
url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz";
url = "https://github.com/mirage/ocaml-conduit/releases/download/v${finalAttrs.version}/conduit-${finalAttrs.version}.tbz";
hash = "sha256-CmPZEIZbVHOJOhcM2lH2E4j0iOz0xLLtf+nsTiz2b2E=";
};
@@ -39,4 +39,4 @@ buildDunePackage rec {
];
homepage = "https://github.com/mirage/ocaml-conduit";
};
}
})