Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage / default.nix
blob98d96cf146f0b6d96cb8daad1967de03a37f775e
1 { lib, buildDunePackage, ocaml, alcotest
2 , functoria, mirage-runtime, bos
3 , ipaddr, astring, logs, stdlib-shims
4 }:
6 buildDunePackage rec {
7   pname = "mirage";
8   inherit (mirage-runtime) version src;
10   minimalOCamlVersion = "4.08";
11   duneVersion = "3";
13   outputs = [ "out" "dev" ];
15   propagatedBuildInputs = [
16     ipaddr
17     functoria
18     mirage-runtime
19     bos
20     astring
21     logs
22     stdlib-shims
23   ];
25   # Tests need opam-monorepo
26   doCheck = false;
27   checkInputs = [
28     alcotest
29   ];
31   installPhase = ''
32     runHook preInstall
33     dune install --prefix=$out --libdir=$dev/lib/ocaml/${ocaml.version}/site-lib/ ${pname}
34     runHook postInstall
35   '';
37   meta = mirage-runtime.meta // {
38     description = "The MirageOS library operating system";
39   };