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.

15 lines
323 B
Nix
Raw Normal View History

2023-03-10 19:51:03 +00:00
{ buildDunePackage, fetchurl, mirage-time, lwt, duration }:
buildDunePackage {
pname = "mirage-time-unix";
2023-03-10 19:51:03 +00:00
inherit (mirage-time) src version;
duneVersion = "3";
2023-03-10 19:51:03 +00:00
propagatedBuildInputs = [ mirage-time lwt duration ];
meta = mirage-time.meta // {
description = "Time operations for MirageOS on Unix";
};
}