nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildDunePackage, ipaddr, functoria-runtime
2, logs, lwt
3, alcotest
4}:
5
6buildDunePackage rec {
7 pname = "mirage-runtime";
8 inherit (functoria-runtime) src version;
9
10 minimalOCamlVersion = "4.08";
11
12 propagatedBuildInputs = [ ipaddr functoria-runtime logs lwt ];
13 checkInputs = [ alcotest ];
14 doCheck = true;
15
16 meta = with lib; {
17 homepage = "https://github.com/mirage/mirage";
18 description = "Base MirageOS runtime library, part of every MirageOS unikernel";
19 license = licenses.isc;
20 maintainers = with maintainers; [ sternenseemann ];
21 };
22}