2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, attoparsec, conduit, text, transformers }:
|
2011-12-29 08:42:08 -08:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "attoparsec-conduit";
|
2012-11-11 13:50:40 -08:00
|
|
|
version = "0.5.0.3";
|
|
|
|
sha256 = "1n35v7mq93marx6ayja7zfk2hib4whspvysf0a7hjikylp4lfydw";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ attoparsec conduit text transformers ];
|
2011-12-29 08:42:08 -08:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
2012-08-09 03:10:49 -07:00
|
|
|
description = "Consume attoparsec parsers via conduit";
|
2011-12-29 08:42:08 -08:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 08:42:08 -08:00
|
|
|
};
|
|
|
|
})
|