haskell-DRBG: add version 0.5.1
This commit is contained in:
parent
6646b80027
commit
63e37a4f1f
20
pkgs/development/libraries/haskell/DRBG/default.nix
Normal file
20
pkgs/development/libraries/haskell/DRBG/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ cabal, cereal, cipherAes128, cryptoApi, cryptohashCryptoapi
|
||||
, entropy, mtl, parallel, prettyclass, tagged
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "DRBG";
|
||||
version = "0.5.1";
|
||||
sha256 = "0mqgll5rf0h0yrdng1w9i8pis4yv9f4qffkh4c0g1ng5lxa9l747";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cereal cipherAes128 cryptoApi cryptohashCryptoapi entropy mtl
|
||||
parallel prettyclass tagged
|
||||
];
|
||||
meta = {
|
||||
description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -937,6 +937,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
downloadCurl = callPackage ../development/libraries/haskell/download-curl {};
|
||||
|
||||
DRBG = callPackage ../development/libraries/haskell/DRBG {};
|
||||
|
||||
DSH = callPackage ../development/libraries/haskell/DSH {};
|
||||
|
||||
dstring = callPackage ../development/libraries/haskell/dstring {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user