2014-04-11 08:13:47 +00:00
|
|
|
{ cabal, attoparsec, charset, doctest, filepath, parsec, text
|
|
|
|
, transformers, unorderedContainers
|
2013-09-25 16:28:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "parsers";
|
2014-06-09 08:25:45 +00:00
|
|
|
version = "0.11.0.2";
|
|
|
|
sha256 = "0b2qb6lhn647926s2g7qrzhnvnym5dr7fny784bv19mfvimwi81c";
|
2013-10-14 06:47:48 +00:00
|
|
|
buildDepends = [
|
2014-04-11 08:13:47 +00:00
|
|
|
attoparsec charset parsec text transformers unorderedContainers
|
2013-10-14 06:47:48 +00:00
|
|
|
];
|
2013-09-25 16:28:09 +00:00
|
|
|
testDepends = [ doctest filepath ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/parsers/";
|
|
|
|
description = "Parsing combinators";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|