2014-04-07 11:43:17 +01:00
|
|
|
{ cabal, cereal, conduit, conduitExtra, cryptoApi, cryptocipher
|
|
|
|
, cryptohashCryptoapi, hspec, resourcet, skein, transformers
|
2013-02-24 21:09:07 +00:00
|
|
|
}:
|
2012-02-10 11:32:45 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-conduit";
|
2014-04-07 11:43:17 +01:00
|
|
|
version = "0.5.3";
|
|
|
|
sha256 = "1xvjfkwd4rqlgyz172s2mihfqz1pac84qhc72c4zw1nwadsh6dgl";
|
|
|
|
buildDepends = [
|
|
|
|
cereal conduit conduitExtra cryptoApi resourcet transformers
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2014-04-07 11:43:17 +01:00
|
|
|
cereal conduit conduitExtra cryptoApi cryptocipher
|
|
|
|
cryptohashCryptoapi hspec skein transformers
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-09-28 12:35:44 +01:00
|
|
|
jailbreak = true;
|
2013-10-02 18:49:20 +01:00
|
|
|
doCheck = false;
|
2012-02-10 11:32:45 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/meteficha/crypto-conduit";
|
|
|
|
description = "Conduit interface for cryptographic operations (from crypto-api)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-10 11:32:45 +00:00
|
|
|
};
|
|
|
|
})
|