From 0eb4bfa5fb841df6581470b25e1b2ffecb31ae86 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 10 Apr 2020 21:27:47 +0200 Subject: [PATCH] darcs: don't try to build the package with ghc-8.8.x --- pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix index 8b38f8cef74c..4c2f12b594f9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix @@ -91,4 +91,9 @@ self: super: { # ghc-8.8: # https://github.com/adnelson/semver-range/issues/15 semver-range = dontCheck super.semver-range; + + # The current version 2.14.2 does not compile with ghc-8.8.x or newer because + # of issues with Cabal 3.x. + darcs = dontDistribute super.darcs; + }