fd258d6fe1
Some downgrades were necessary. svn path=/nixpkgs/trunk/; revision=28364
16 lines
572 B
Nix
16 lines
572 B
Nix
{cabal, cereal, cryptoApi, cryptocipher} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "cprng-aes";
|
|
version = "0.2.1";
|
|
sha256 = "0q6qkvha7cckz3zjnzfsrx298arzbdavy1f73hygrd8f7n74442j";
|
|
propagatedBuildInputs = [ cereal cryptoApi cryptocipher ];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-cprng-aes";
|
|
description = "Crypto Pseudo Random Number Generator using AES in counter mode.";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|