2013-04-05 22:43:27 +02:00
|
|
|
{ cabal, cereal, conduit, cryptoApi, cryptocipher
|
|
|
|
, cryptohashCryptoapi, hspec, skein, transformers
|
2013-02-24 22:09:07 +01:00
|
|
|
}:
|
2012-02-10 12:32:45 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-conduit";
|
2013-04-05 22:43:27 +02:00
|
|
|
version = "0.5.1";
|
|
|
|
sha256 = "04z8z7bipa40xnjr8civ1sj3df2iyvlv929ibkrdqv87gj0qv2dp";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal conduit cryptoApi transformers ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2013-04-05 22:43:27 +02:00
|
|
|
cereal conduit cryptoApi cryptocipher cryptohashCryptoapi hspec
|
|
|
|
skein transformers
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
2013-02-25 00:49:27 +01:00
|
|
|
doCheck = false;
|
2012-02-10 12:32:45 +01: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-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-02-10 12:32:45 +01:00
|
|
|
};
|
|
|
|
})
|