depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage/runtime.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

22 lines
597 B
Nix

{ lib, buildDunePackage, fetchurl, ipaddr, functoria-runtime
, fmt, logs, lwt
, alcotest
}:
buildDunePackage rec {
pname = "mirage-runtime";
inherit (functoria-runtime) src version;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ ipaddr functoria-runtime fmt logs lwt ];
nativeCheckInputs = [ alcotest ];
doCheck = true;
meta = with lib; {
homepage = "https://github.com/mirage/mirage";
description = "The base MirageOS runtime library, part of every MirageOS unikernel";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}