haskell-parsers: add version 0.11

This commit is contained in:
Peter Simons
2014-04-11 10:13:47 +02:00
parent 4604d52df4
commit ea95516bf8
3 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
{ cabal, attoparsec, charset, doctest, filepath, parsec, text
, transformers, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.11";
sha256 = "0k3xm9ww4q2wkjik4n4ww6ys79kl7xyzbhcb7xi81jz9py0xciqd";
buildDepends = [
attoparsec charset parsec text transformers unorderedContainers
];
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})