ocamlPackages.qcheck: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 12:09:12 -06:00
parent a49f6cc05e
commit 5947e1c9a6
@@ -5,14 +5,14 @@
qcheck-core,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "qcheck-multicoretests-util";
version = "0.11";
src = fetchFromGitHub {
owner = "ocaml-multicore";
repo = "multicoretests";
rev = version;
rev = finalAttrs.version;
hash = "sha256-QABh33C1k5AAYkOa5zDIExwwJFlhgdvSuxShJt4ESM8=";
};
@@ -28,4 +28,4 @@ buildDunePackage rec {
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}
})