ocamlPackages.mopsa: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:28:19 -05:00
parent 30cea1a590
commit a73560ee5f
@@ -17,7 +17,7 @@
zarith,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "mopsa";
version = "1.1";
@@ -26,7 +26,7 @@ buildDunePackage rec {
src = fetchFromGitLab {
owner = "mopsa";
repo = "mopsa-analyzer";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-lO5dtGAl1dq8oJco/hPXrAbN05rKc62Zrci/8CLrQ0c=";
};
@@ -79,4 +79,4 @@ buildDunePackage rec {
maintainers = [ lib.maintainers.vbgl ];
};
}
})