nixpkgs/pkgs/development/libraries/haskell/crypto-conduit/default.nix
Peter Simons 7762bb93ee Updated Haskell packages.
- cabal-install: added support for version 0.14.0 to GHC 7.0.4, 6.12.3, and 6.10.4
 - crypto-conduit: updated to version 0.3.1
 - haskell-src-exts: updated to version 1.13.2
 - hjsmin: updated to version 0.1.0
 - persistent: updated to version 0.9.0.2
 - wai-extra: updated to version 1.2.0.3
 - wxdirect: updated to version 0.90.0.1
 - yesod-core: updated to version 1.0.1
 - yesod-default: updated to version 1.0.1
 - yesod-form: updated to version 1.0.0.2
 - yesod-routes: updated to version 1.0.1
 - yesod: updated to version 1.0.1

svn path=/nixpkgs/trunk/; revision=33838
2012-04-19 10:22:03 +00:00

16 lines
569 B
Nix

{ cabal, cereal, conduit, cryptoApi, transformers }:
cabal.mkDerivation (self: {
pname = "crypto-conduit";
version = "0.3.1";
sha256 = "0hb9wkq70bmx54vksj78f0av1byvksjhqlr730cfc5fc6w60kzqk";
buildDepends = [ cereal conduit cryptoApi transformers ];
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})