about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-time/unix.nix
blob: 9678815edf05010024211105125af672fb56b533 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, fetchurl, mirage-time, lwt, duration }:

buildDunePackage {
  pname = "mirage-time-unix";

  inherit (mirage-time) src version;
  duneVersion = "3";

  propagatedBuildInputs = [ mirage-time lwt duration ];

  meta = mirage-time.meta // {
    description = "Time operations for MirageOS on Unix";
  };
}