ocamlPackages.mm: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:28:18 -05:00
parent 5ebb1fb432
commit def68ef356
@@ -10,7 +10,7 @@
theora,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "mm";
version = "0.8.6";
@@ -21,7 +21,7 @@ buildDunePackage rec {
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-mm";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "sha256-ME6Naza7OvZ/63zEjrPeKq5JwMoMfV2fpkCuZdtCZ/c=";
};
@@ -40,4 +40,4 @@ buildDunePackage rec {
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ dandellion ];
};
}
})