summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-clock/unix.nix
blob: 5918d89221f2836615427158d8bf9ae99394e146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, mirage-clock }:

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

  inherit (mirage-clock) version src;

  propagatedBuildInputs = [ mirage-clock ];

  meta = mirage-clock.meta // {
    description = "Unix-based implementation for the MirageOS Clock interface";
  };
}