depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage-time/unix.nix
Default email b55a4ee46f Project import generated by Copybara.
GitOrigin-RevId: e9158eca70ae59e73fae23be5d13d3fa0cfc78b4
2020-12-09 13:39:15 +01:00

13 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";
};
}