ocamlPackages.farith: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:40:20 +00:00
parent 9a2c16c733
commit 29f52e6708
@@ -7,7 +7,7 @@
zarith,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "farith";
version = "0.1";
@@ -17,7 +17,7 @@ buildDunePackage rec {
domain = "git.frama-c.com";
owner = "pub";
repo = "farith";
tag = version;
tag = finalAttrs.version;
hash = "sha256-9TGKeL3DXKEf2RLpkjOTC8aDQeLKSM9QUIiSkFCQW+8=";
};
@@ -35,4 +35,4 @@ buildDunePackage rec {
license = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}
})