ocamlPackages.mirage-clock-unix: init at 3.0.1

This commit is contained in:
sternenseemann
2020-04-13 14:40:21 +02:00
committed by Vincent Laporte
parent c2db123b21
commit 7538b79607
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ buildDunePackage, mirage-clock }:
buildDunePackage {
pname = "mirage-clock-unix";
inherit (mirage-clock) version src;
propagatedBuildInputs = [ mirage-clock ];
meta = mirage-clock.meta // {
description = "Unix-based implementation for the MirageOS Clock interface";
};
}