Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
686 B
Nix
40 lines
686 B
Nix
{
|
|
buildDunePackage,
|
|
mirage-crypto-rng,
|
|
miou,
|
|
logs,
|
|
duration,
|
|
mtime,
|
|
digestif,
|
|
ohex,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-crypto-rng-miou-unix";
|
|
|
|
inherit (mirage-crypto-rng) version src;
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
miou
|
|
logs
|
|
mirage-crypto-rng
|
|
duration
|
|
mtime
|
|
digestif
|
|
ohex
|
|
];
|
|
|
|
meta = mirage-crypto-rng.meta // {
|
|
description = "Feed the entropy source in an miou.unix-friendly way";
|
|
longDescription = ''
|
|
Mirage-crypto-rng-miou-unix feeds the entropy source for Mirage_crypto_rng-based
|
|
random number generator implementations, in an miou.unix-friendly way.
|
|
'';
|
|
};
|
|
}
|