2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi, cryptohash
|
2013-04-30 13:10:57 +01:00
|
|
|
, entropy, primitive, QuickCheck, testFramework
|
|
|
|
, testFrameworkQuickcheck2, vector
|
2011-11-01 19:03:01 +00:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "cryptocipher";
|
2013-08-21 09:18:58 +01:00
|
|
|
version = "0.5.2";
|
|
|
|
sha256 = "0ffd3w2hvi1zbhgk0xvgbnlfzzwijbrs5b9b4g2vc5p69wkv24zr";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-11-01 19:03:01 +00:00
|
|
|
buildDepends = [
|
2013-04-30 13:10:57 +01:00
|
|
|
cereal cipherAes cipherRc4 cpu cryptoApi primitive vector
|
2011-11-01 19:03:01 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
cryptoApi cryptohash entropy QuickCheck testFramework
|
|
|
|
testFrameworkQuickcheck2 vector
|
|
|
|
];
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
2013-08-14 10:52:02 +01:00
|
|
|
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
|
2013-01-16 11:42:13 +00:00
|
|
|
description = "Symmetrical block and stream ciphers";
|
2011-08-07 23:51:22 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|