Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
659 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
mirage-crypto-rng,
duration,
mirage-runtime,
mirage-mtime,
mirage-sleep,
mirage-unix,
mirage-time-unix,
mirage-clock-unix,
logs,
lwt,
ohex,
}:
buildDunePackage {
pname = "mirage-crypto-rng-mirage";
inherit (mirage-crypto-rng) version src;
doCheck = true;
checkInputs = [
mirage-unix
mirage-clock-unix
mirage-time-unix
ohex
];
propagatedBuildInputs = [
duration
mirage-crypto-rng
mirage-runtime
mirage-mtime
mirage-sleep
logs
lwt
];
meta = mirage-crypto-rng.meta // {
description = "Entropy collection for a cryptographically secure PRNG";
};
}