2012-08-28 12:37:14 +02:00
|
|
|
{ cabal, cereal, cipherAes, cryptoApi, cryptocipher, entropy
|
|
|
|
, random
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "cprng-aes";
|
2012-08-28 12:37:14 +02:00
|
|
|
version = "0.2.4";
|
|
|
|
sha256 = "0rk14yj76p5a1h6jlz4q2fgijjid430lwcr57zkkda8mdibqqs5j";
|
|
|
|
buildDepends = [
|
|
|
|
cereal cipherAes cryptoApi cryptocipher entropy random
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-cprng-aes";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Crypto Pseudo Random Number Generator using AES in counter mode";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|