Files
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.

24 lines
336 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
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";
};
}