2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi, cryptohash
|
|
|
|
, cryptoPubkeyTypes, entropy, primitive, QuickCheck, tagged
|
|
|
|
, testFramework, testFrameworkQuickcheck2, vector
|
2011-11-01 20:03:01 +01:00
|
|
|
}:
|
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 = "cryptocipher";
|
2013-01-16 12:42:13 +01:00
|
|
|
version = "0.4.0";
|
|
|
|
sha256 = "1qbnhzbzypin7h62sn2sibij7clsgmaiq24q3xhgbjrirb6bhqf0";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-11-01 20:03:01 +01:00
|
|
|
buildDepends = [
|
2013-01-16 12:42:13 +01:00
|
|
|
cereal cipherAes cipherRc4 cpu cryptoApi cryptoPubkeyTypes
|
|
|
|
primitive tagged vector
|
2011-11-01 20:03:01 +01:00
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
cryptoApi cryptohash entropy QuickCheck testFramework
|
|
|
|
testFrameworkQuickcheck2 vector
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-cryptocipher";
|
2013-01-16 12:42:13 +01:00
|
|
|
description = "Symmetrical block and stream ciphers";
|
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;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|