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-03-24 17:33:52 +01:00
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "14b6ym5sjvg1x82ijydhrjk5445kg0fvwqzqwqld59akbqb6fpg5";
|
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";
|
2011-12-29 17:42:08 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|