2014-02-10 02:06:28 -08:00
|
|
|
{ cabal, attoparsec, HUnit, mmorph, pipes, pipesParse, tasty
|
|
|
|
, tastyHunit, text, transformers
|
2013-09-08 04:40:37 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pipes-attoparsec";
|
2014-03-19 03:45:29 -07:00
|
|
|
version = "0.5.0";
|
|
|
|
sha256 = "1xpqna850lxawx0m84lzaxwrwfw4vccr7jjf199ir7bmwwhqlr5h";
|
2013-09-08 04:40:37 -07:00
|
|
|
buildDepends = [ attoparsec pipes pipesParse text transformers ];
|
|
|
|
testDepends = [
|
2014-02-10 02:06:28 -08:00
|
|
|
attoparsec HUnit mmorph pipes pipesParse tasty tastyHunit text
|
|
|
|
transformers
|
2013-09-08 04:40:37 -07:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/k0001/pipes-attoparsec";
|
|
|
|
description = "Attoparsec and Pipes integration";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|