ocamlPackages.mirage: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-21 15:59:46 -06:00
parent e86f21205a
commit eb5893727f
@@ -14,7 +14,7 @@
uri,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "mirage";
inherit (mirage-runtime) version src;
@@ -43,11 +43,11 @@ buildDunePackage rec {
installPhase = ''
runHook preInstall
dune install --prefix=$out --libdir=$dev/lib/ocaml/${ocaml.version}/site-lib/ ${pname}
dune install --prefix=$out --libdir=$dev/lib/ocaml/${ocaml.version}/site-lib/ mirage
runHook postInstall
'';
meta = mirage-runtime.meta // {
description = "MirageOS library operating system";
};
}
})