2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, cereal, conduit, cryptoApi, transformers }:
|
2012-02-10 12:32:45 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-conduit";
|
2012-04-05 18:51:59 +02:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "1j7j1ga9in9j9i5gxdkpijarcw7a0y8w0z4sj00d2yzb1qhdalzq";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal conduit cryptoApi transformers ];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-10 12:32:45 +01:00
|
|
|
};
|
|
|
|
})
|