haskell-parsers: update to version 0.11.0.2

Unfortunately, there are still build errors with this package (see
https://github.com/ekmett/parsers/issues/39). We need the latest
version, though, because older ones won't work with the latest
attoparsec.
This commit is contained in:
Peter Simons 2014-06-09 10:25:45 +02:00
parent b3c9513efe
commit 20da5ecc9c
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.11.0.1";
sha256 = "0jg91zzsq12vxxsxrd1kx8h2c06asccymjbpx0zl7nvj5dhjfkpq";
version = "0.11.0.2";
sha256 = "0b2qb6lhn647926s2g7qrzhnvnym5dr7fny784bv19mfvimwi81c";
buildDepends = [
attoparsec charset parsec text transformers unorderedContainers
];

View File

@ -1644,8 +1644,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
parsec = self.parsec_3_1_5;
parsers_0_10_3 = callPackage ../development/libraries/haskell/parsers/0.10.3.nix {};
parsers_0_11_0_1 = callPackage ../development/libraries/haskell/parsers/0.11.0.1.nix {};
parsers = self.parsers_0_11_0_1;
parsers_0_11_0_2 = callPackage ../development/libraries/haskell/parsers/0.11.0.2.nix {};
parsers = self.parsers_0_11_0_2;
parsimony = callPackage ../development/libraries/haskell/parsimony {};