nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 38 lines 546 B view raw
1{ 2 buildDunePackage, 3 mirage-crypto, 4 ohex, 5 ounit2, 6 randomconv, 7 dune-configurator, 8 digestif, 9 duration, 10 logs, 11}: 12 13buildDunePackage { 14 pname = "mirage-crypto-rng"; 15 16 minimalOCamlVersion = "4.14"; 17 18 inherit (mirage-crypto) version src; 19 20 doCheck = true; 21 checkInputs = [ 22 ohex 23 ounit2 24 randomconv 25 ]; 26 27 buildInputs = [ dune-configurator ]; 28 propagatedBuildInputs = [ 29 digestif 30 mirage-crypto 31 duration 32 logs 33 ]; 34 35 meta = mirage-crypto.meta // { 36 description = "Cryptographically secure PRNG"; 37 }; 38}