2014-02-10 10:06:28 +00:00
|
|
|
{ cabal, attoparsec, HUnit, mmorph, pipes, pipesParse, tasty
|
|
|
|
, tastyHunit, text, transformers
|
2013-09-08 12:40:37 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pipes-attoparsec";
|
2014-03-19 10:45:29 +00:00
|
|
|
version = "0.5.0";
|
|
|
|
sha256 = "1xpqna850lxawx0m84lzaxwrwfw4vccr7jjf199ir7bmwwhqlr5h";
|
2013-09-08 12:40:37 +01:00
|
|
|
buildDepends = [ attoparsec pipes pipesParse text transformers ];
|
|
|
|
testDepends = [
|
2014-02-10 10:06:28 +00:00
|
|
|
attoparsec HUnit mmorph pipes pipesParse tasty tastyHunit text
|
|
|
|
transformers
|
2013-09-08 12:40:37 +01: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 ];
|
|
|
|
};
|
|
|
|
})
|