about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-clock/solo5.nix
blob: d787c08e1bb03907e388044af43abf80cf0bf53c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildDunePackage
, mirage-clock
}:

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

  inherit (mirage-clock)
    version
    src
    ;

  propagatedBuildInputs = [
    mirage-clock
  ];

  meta = mirage-clock.meta // {
    description = "Paravirtual implementation of the MirageOS Clock interface";
  };
}