nixpkgs/pkgs/development/libraries/haskell/attoparsec-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

18 lines
615 B
Nix

{ cabal, attoparsec, conduit, hspec, resourcet, text, transformers
}:
cabal.mkDerivation (self: {
pname = "attoparsec-conduit";
version = "1.0.0";
sha256 = "1aw071qcwhxwpd6azhgaiia97rhj50rms4pysbc19iihmdih3ib8";
buildDepends = [ attoparsec conduit text transformers ];
testDepends = [ attoparsec conduit hspec resourcet text ];
meta = {
homepage = "http://github.com/snoyberg/conduit";
description = "Consume attoparsec parsers via conduit";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})