ocamlPackages.kdf: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:36:39 -05:00
parent b998e69227
commit 49612f26bb
@@ -8,12 +8,12 @@
ohex,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "kdf";
version = "1.0.0";
src = fetchurl {
url = "https://github.com/robur-coop/kdf/releases/download/v${version}/kdf-${version}.tbz";
url = "https://github.com/robur-coop/kdf/releases/download/v${finalAttrs.version}/kdf-${finalAttrs.version}.tbz";
hash = "sha256-0WFYKw7+ZtlY3WuMnCEGjp9kVM4hg3fWz4eCPexi4M4=";
};
@@ -34,4 +34,4 @@ buildDunePackage rec {
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}
})