ocamlPackages.ff: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-21 19:29:28 -06:00
parent 0bcb904ea1
commit 89f2c03e79
+4 -4
View File
@@ -5,13 +5,13 @@
zarith,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "ff-sig";
version = "0.6.2";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = "cryptography/ocaml-ff";
rev = version;
rev = finalAttrs.version;
hash = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
};
@@ -24,9 +24,9 @@ buildDunePackage rec {
doCheck = true;
meta = {
inherit (src.meta) homepage;
inherit (finalAttrs.src.meta) homepage;
description = "Minimal finite field signatures";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}
})