nixpkgs/pkgs/development/ocaml-modules/mirage/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
758 B
Nix
Raw Normal View History

{ lib, buildDunePackage, ocaml, alcotest
, functoria, mirage-runtime, bos
, ipaddr, astring, logs, stdlib-shims
2020-11-06 20:55:22 +00:00
}:
buildDunePackage rec {
pname = "mirage";
inherit (mirage-runtime) version src;
minimalOCamlVersion = "4.08";
2023-02-24 06:20:50 +00:00
duneVersion = "3";
2020-11-06 20:55:22 +00:00
outputs = [ "out" "dev" ];
propagatedBuildInputs = [
ipaddr
functoria
mirage-runtime
bos
astring
logs
stdlib-shims
];
2020-11-06 20:55:22 +00:00
# Tests need opam-monorepo
doCheck = false;
checkInputs = [
alcotest
];
2020-11-06 20:55:22 +00:00
installPhase = ''
runHook preInstall
dune install --prefix=$out --libdir=$dev/lib/ocaml/${ocaml.version}/site-lib/ ${pname}
runHook postInstall
'';
2020-11-06 20:55:22 +00:00
meta = mirage-runtime.meta // {
description = "The MirageOS library operating system";
};
}