3
0
Fork 0
forked from mirrors/nixpkgs

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;
};
})

View file

@ -1948,7 +1948,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
parsec3 = self.parsec_3_1_5;
parsec = self.parsec3;
parsers = callPackage ../development/libraries/haskell/parsers {};
parsers_0_10_3 = callPackage ../development/libraries/haskell/parsers/0.10.3.nix {};
parsers_0_11 = callPackage ../development/libraries/haskell/parsers/0.11.nix {};
parsers = self.parsers_0_10_3;
parsimony = callPackage ../development/libraries/haskell/parsimony {};