about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-06-09 10:25:45 +0200
committerPeter Simons <simons@cryp.to>2014-06-09 10:27:00 +0200
commit20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a (patch)
tree95594a2bb993927a4af9fa27c44a72413722594b
parentb3c9513efe2aafe840a45923c5a903cfd6893e55 (diff)
downloadnixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar.gz
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar.bz2
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar.lz
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar.xz
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.tar.zst
nixlib-20da5ecc9cce6bf8852abd493c7fe7c1e2609f1a.zip
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.
-rw-r--r--pkgs/development/libraries/haskell/parsers/0.11.0.2.nix (renamed from pkgs/development/libraries/haskell/parsers/0.11.0.1.nix)4
-rw-r--r--pkgs/top-level/haskell-packages.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/haskell/parsers/0.11.0.1.nix b/pkgs/development/libraries/haskell/parsers/0.11.0.2.nix
index f24c96b1fad3..36c5f2ae998d 100644
--- a/pkgs/development/libraries/haskell/parsers/0.11.0.1.nix
+++ b/pkgs/development/libraries/haskell/parsers/0.11.0.2.nix
@@ -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
   ];
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index e63e49367003..3c3ee8e7f809 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -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 {};