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";
|
2013-04-25 08:05:38 +01:00
|
|
|
version = "0.5.2";
|
|
|
|
sha256 = "0ncqwr2a9nxl6q7qys9gb5db62lx622g5db1xhpfni045x324kbz";
|
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-02-24 23:49:27 +00:00
|
|
|
doCheck = false;
|
2013-09-28 12:35:44 +01:00
|
|
|
jailbreak = true;
|
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
|
|
|
};
|
|
|
|
})
|