ocamlPackages.camlp-streams: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:37:03 +00:00
parent 7572946128
commit 955c8c527b
@@ -4,14 +4,14 @@
fetchFromGitHub,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "camlp-streams";
version = "5.0.1";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = "v${version}";
repo = "camlp-streams";
rev = "v${finalAttrs.version}";
sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ=";
};
@@ -21,4 +21,4 @@ buildDunePackage rec {
maintainers = [ lib.maintainers.vbgl ];
};
}
})