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

35 lines
555 B
Nix
Raw Normal View History

{ lib, buildDunePackage, 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;
minimumOCamlVersion = "4.08";
2020-11-06 20:55:22 +00:00
useDune2 = true;
outputs = [ "out" "dev" ];
propagatedBuildInputs = [
ipaddr
functoria
mirage-runtime
bos
astring
logs
stdlib-shims
];
2020-11-06 20:55:22 +00:00
doCheck = true;
checkInputs = [
alcotest
];
2020-11-06 20:55:22 +00:00
meta = mirage-runtime.meta // {
description = "The MirageOS library operating system";
};
}