2012-05-02 10:25:23 +01:00
|
|
|
{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive
|
|
|
|
, tagged, 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";
|
2012-06-18 10:52:42 +01:00
|
|
|
version = "0.3.5";
|
|
|
|
sha256 = "02qc1rr9l51dnk0sn7js8zv2w2qhkha3ik828j5s729h80cyw99s";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-11-01 19:03:01 +00:00
|
|
|
buildDepends = [
|
2012-05-02 10:25:23 +01:00
|
|
|
cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector
|
2011-11-01 19:03:01 +00:00
|
|
|
];
|
2011-08-07 23:51:22 +01: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 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|