2013-04-05 21:43:27 +01:00
|
|
|
{ cabal, cereal, conduit, cryptoApi, cryptocipher
|
|
|
|
, cryptohashCryptoapi, hspec, 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-01-16 10:54:49 +00:00
|
|
|
version = "0.5.2.2";
|
|
|
|
sha256 = "1969jys4za3m818jvnfcsv5hpc50bcvkrmy9lxr8fz854q01vhk2";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ cereal conduit cryptoApi transformers ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-04-05 21:43:27 +01:00
|
|
|
cereal conduit 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
|
|
|
};
|
|
|
|
})
|