about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-time/unix.nix
blob: c19ca30fe024a54af3e3bb11e9fc30241ecd4552 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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";
  };
}