mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
16 lines
359 B
Nix
16 lines
359 B
Nix
{ buildDunePackage, mirage-clock, dune-configurator }:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-clock-unix";
|
|
|
|
inherit (mirage-clock) version useDune2 src;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [ mirage-clock ];
|
|
|
|
meta = mirage-clock.meta // {
|
|
description = "Unix-based implementation for the MirageOS Clock interface";
|
|
};
|
|
}
|