2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, Cabal, cereal, conduit, cryptoApi, transformers }:
|
2012-02-10 11:32:45 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "crypto-conduit";
|
|
|
|
version = "0.1.3.1";
|
|
|
|
sha256 = "0b8n2njz2ccdb9gql79l96jgv1nlq4ls09d25a2yy9f69w7h1ww5";
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ Cabal cereal conduit cryptoApi transformers ];
|
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;
|
2012-02-13 09:02:01 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-02-10 11:32:45 +00:00
|
|
|
};
|
|
|
|
})
|