nixpkgs/pkgs/development/libraries/haskell/base64-conduit/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

19 lines
566 B
Nix

{ cabal, base64Bytestring, conduit, hspec, QuickCheck, transformers
}:
cabal.mkDerivation (self: {
pname = "base64-conduit";
version = "1.0.0";
sha256 = "10wjgdixk5da48jpm2i91vy3ckdqpbpgba6hzn7ak6d3qac22m9q";
buildDepends = [ base64Bytestring conduit ];
testDepends = [
base64Bytestring conduit hspec QuickCheck transformers
];
meta = {
homepage = "http://github.com/snoyberg/conduit";
description = "Base64-encode and decode streams of bytes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})