aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/mirage/default.nix
blob: 9a4d3f21cb8790c1dd667e123736718cd0c1f05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildDunePackage, ocaml
, functoria, mirage-runtime
}:

buildDunePackage rec {
  pname = "mirage";
  inherit (mirage-runtime) version src;

  useDune2 = true;

  outputs = [ "out" "dev" ];

  propagatedBuildInputs = [ functoria mirage-runtime ];

  installPhase = ''
    runHook preInstall
    dune install --prefix=$out --libdir=$dev/lib/ocaml/${ocaml.version}/site-lib/ ${pname}
    runHook postInstall
  '';

  meta = mirage-runtime.meta // {
    description = "The MirageOS library operating system";
  };

}