2020-05-20 22:55:13 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, ipaddr, functoria-runtime
|
2022-09-05 14:54:37 +00:00
|
|
|
, fmt, logs, lwt
|
|
|
|
, alcotest
|
|
|
|
}:
|
2020-05-20 22:55:13 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "mirage-runtime";
|
2022-09-05 14:54:37 +00:00
|
|
|
inherit (functoria-runtime) src version;
|
2020-05-20 22:55:13 +00:00
|
|
|
|
2022-09-05 14:54:37 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2020-11-06 20:55:17 +00:00
|
|
|
|
2022-09-05 14:54:37 +00:00
|
|
|
propagatedBuildInputs = [ ipaddr functoria-runtime fmt logs lwt ];
|
2020-05-20 22:55:13 +00:00
|
|
|
checkInputs = [ 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 ];
|
|
|
|
};
|
|
|
|
}
|