forked from mirrors/nixpkgs
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
23 lines
679 B
Nix
23 lines
679 B
Nix
{ buildDunePackage, mirage-crypto-rng, duration, cstruct, mirage-runtime
|
|
, mirage-time, mirage-clock, mirage-unix, mirage-time-unix, mirage-clock-unix
|
|
, logs, lwt
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-crypto-rng-mirage";
|
|
|
|
inherit (mirage-crypto-rng) version src useDune2 minimumOCamlVersion;
|
|
|
|
doCheck = true;
|
|
checkInputs = [ mirage-unix mirage-clock-unix mirage-time-unix ];
|
|
|
|
propagatedBuildInputs = [ duration cstruct mirage-crypto-rng mirage-runtime
|
|
mirage-time mirage-clock logs lwt ];
|
|
|
|
strictDeps = !doCheck;
|
|
|
|
meta = mirage-crypto-rng.meta // {
|
|
description = "Entropy collection for a cryptographically secure PRNG";
|
|
};
|
|
}
|