about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-03-12 10:36:01 +0100
committerPeter Simons <simons@cryp.to>2018-03-12 14:31:00 +0100
commit6c837058a4965d68b1c48ee9500aed5b7935f1b1 (patch)
treea4bdcd65961fc3f1dc58d9d54791472634401f19 /pkgs/development
parent729a26d8756a1d9d7cac73f355342bfc706885fe (diff)
downloadnixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar.gz
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar.bz2
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar.lz
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar.xz
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.tar.zst
nixlib-6c837058a4965d68b1c48ee9500aed5b7935f1b1.zip
haskell-megaparsec: fix build with GHC 7.10.x
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index eb8497335433..a071a6aa866a 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -41,7 +41,8 @@ self: super: {
 
   gtk2hs-buildtools = super.gtk2hs-buildtools.override { Cabal = self.Cabal_1_24_2_0; };
 
-  megaparsec = addBuildDepend super.megaparsec self.fail;
+  # https://github.com/mrkkrp/megaparsec/issues/282
+  megaparsec = addBuildDepend (dontCheck super.megaparsec) self.fail;
 
   Extra = appendPatch super.Extra (pkgs.fetchpatch {
     url = "https://github.com/seereason/sr-extra/commit/29787ad4c20c962924b823d02a7335da98143603.patch";