ocamlPackages.fiber: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:40:21 +00:00
parent 89f2c03e79
commit 18ba535a61
@@ -7,12 +7,12 @@
stdune,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "fiber";
version = "3.7.0";
src = fetchurl {
url = "https://github.com/ocaml-dune/fiber/releases/download/${version}/fiber-lwt-${version}.tbz";
url = "https://github.com/ocaml-dune/fiber/releases/download/${finalAttrs.version}/fiber-lwt-${finalAttrs.version}.tbz";
hash = "sha256-hkihWuk/5pQpmc42iHQpo5E7YoKcRxTlIMwOehw7loI=";
};
@@ -33,4 +33,4 @@ buildDunePackage rec {
maintainers = [ ];
license = lib.licenses.mit;
};
}
})