nixpkgs/pkgs/development/libraries/haskell/base64-conduit/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01: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;
};
})