2012-12-03 16:11:04 +01:00
|
|
|
{ cabal, cipherAes, cryptoApi, cryptoRandomApi, 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";
|
2013-01-04 19:17:21 +01:00
|
|
|
version = "0.3.2";
|
|
|
|
sha256 = "1xwwhg83llf9fzfafxsky65biwk0sla9273rp4gqr7vg9p02k221";
|
2012-08-28 12:37:14 +02:00
|
|
|
buildDepends = [
|
2012-12-03 16:11:04 +01:00
|
|
|
cipherAes cryptoApi cryptoRandomApi entropy random
|
2012-08-28 12:37:14 +02:00
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|