nixpkgs/pkgs/development/ocaml-modules/mirage-time/unix.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
343 B
Nix
Raw Normal View History

{ buildDunePackage, fetchurl, mirage-time, ocaml_lwt, duration }:
buildDunePackage {
pname = "mirage-time-unix";
2020-12-05 19:27:26 +03:00
inherit (mirage-time) src useDune2 version minimumOCamlVersion;
propagatedBuildInputs = [ mirage-time ocaml_lwt duration ];
meta = mirage-time.meta // {
description = "Time operations for MirageOS on Unix";
};
}