mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
18 lines
407 B
Nix
18 lines
407 B
Nix
{ buildDunePackage, mirage-crypto, mirage-crypto-rng, dune-configurator
|
|
, duration, logs, mtime, lwt }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-crypto-rng-lwt";
|
|
|
|
inherit (mirage-crypto) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
doCheck = true;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
propagatedBuildInputs = [ mirage-crypto mirage-crypto-rng duration logs mtime lwt ];
|
|
|
|
meta = mirage-crypto-rng.meta;
|
|
}
|