a30df95691
This change brings support for building and running the regressions test suites.
18 lines
615 B
Nix
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 ];
|
|
};
|
|
})
|