2013-09-04 11:04:19 +00:00
|
|
|
{ cabal, cipherAes, cipherBlowfish, cipherCamellia, cipherDes
|
|
|
|
, cipherRc4, cryptoCipherTypes
|
2011-11-01 19:03:01 +00:00
|
|
|
}:
|
2011-08-07 22:51:22 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:51:22 +00:00
|
|
|
pname = "cryptocipher";
|
2013-10-27 11:39:36 +00:00
|
|
|
version = "0.6.2";
|
|
|
|
sha256 = "0ip3a2as0df6drl29sryayxx22sx55v6bs60s2fh3i1nxqnydf9l";
|
2011-11-01 19:03:01 +00:00
|
|
|
buildDepends = [
|
2013-09-04 11:04:19 +00:00
|
|
|
cipherAes cipherBlowfish cipherCamellia cipherDes cipherRc4
|
|
|
|
cryptoCipherTypes
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2011-08-07 22:51:22 +00:00
|
|
|
meta = {
|
2013-08-14 09:52:02 +00: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 22:51:22 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:51:22 +00:00
|
|
|
};
|
|
|
|
})
|