mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
14 lines
343 B
Nix
14 lines
343 B
Nix
{ buildDunePackage, fetchurl, mirage-time, ocaml_lwt, duration }:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-time-unix";
|
|
|
|
inherit (mirage-time) src useDune2 version minimumOCamlVersion;
|
|
|
|
propagatedBuildInputs = [ mirage-time ocaml_lwt duration ];
|
|
|
|
meta = mirage-time.meta // {
|
|
description = "Time operations for MirageOS on Unix";
|
|
};
|
|
}
|