2013-04-05 13:43:27 -07:00
|
|
|
{ cabal, cereal, conduit, cryptoApi, cryptocipher
|
|
|
|
, cryptohashCryptoapi, hspec, skein, transformers
|
2013-02-24 13:09:07 -08:00
|
|
|
}:
|
2012-02-10 03:32:45 -08:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-conduit";
|
2014-01-16 02:54:49 -08:00
|
|
|
version = "0.5.2.2";
|
|
|
|
sha256 = "1969jys4za3m818jvnfcsv5hpc50bcvkrmy9lxr8fz854q01vhk2";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ cereal conduit cryptoApi transformers ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2013-04-05 13:43:27 -07:00
|
|
|
cereal conduit cryptoApi cryptocipher cryptohashCryptoapi hspec
|
|
|
|
skein transformers
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-09-28 04:35:44 -07:00
|
|
|
jailbreak = true;
|
2013-10-02 10:49:20 -07:00
|
|
|
doCheck = false;
|
2012-02-10 03:32:45 -08: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 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-10 03:32:45 -08:00
|
|
|
};
|
|
|
|
})
|