2012-05-02 11:25:23 +02:00
|
|
|
{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive
|
|
|
|
, tagged, 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";
|
2012-05-15 13:50:48 +02:00
|
|
|
version = "0.3.2";
|
|
|
|
sha256 = "0nw7rwlnakdslzg4z6ik9hfylwnrbn103n677w0xr5b81wj19a5j";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-11-01 20:03:01 +01:00
|
|
|
buildDepends = [
|
2012-05-02 11:25:23 +02:00
|
|
|
cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector
|
2011-11-01 20:03:01 +01:00
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-cryptocipher";
|
|
|
|
description = "Symmetrical Block, Stream and PubKey Ciphers";
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|