2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, attoparsec, conduit, hspec, resourcet, text, transformers
|
|
|
|
}:
|
2011-12-29 17:42:08 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "attoparsec-conduit";
|
2013-07-08 11:53:10 +02:00
|
|
|
version = "1.0.1.1";
|
|
|
|
sha256 = "0v6d5a720fksvgaysbhqfzsq9a9h0l37yw3dbskxljbdy66gqsh0";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ attoparsec conduit text transformers ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ attoparsec conduit hspec resourcet text ];
|
2011-12-29 17:42:08 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
2012-08-09 12:10:49 +02:00
|
|
|
description = "Consume attoparsec parsers via conduit";
|
2013-07-08 11:53:10 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-12-29 17:42:08 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|