From 684ed9e9facd12c7d4f4e588a87033382c22e6cb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 2 Jan 2021 18:23:13 +0100 Subject: [PATCH] cassava & attoparsec need jailbreaks to accept the latest QuickCheck. --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 04ac84ad8dd9..8d9e67863a1e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1532,12 +1532,11 @@ self: super: { (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.ApplicationServices); # Break out of overspecified constraint on QuickCheck. + attoparsec = doJailbreak super.attoparsec; # https://github.com/haskell/attoparsec/pull/168 + cassava = doJailbreak super.cassava; + lzma = doJailbreak super.lzma; psqueues = doJailbreak super.psqueues; - # Break out of overspecified constraint on QuickCheck. - # https://github.com/haskell/attoparsec/pull/168 - attoparsec = doJailbreak super.attoparsec; - # Break out of overspecified constraint on QuickCheck. # https://github.com/Gabriel439/Haskell-Nix-Derivation-Library/pull/10 nix-derivation = doJailbreak super.nix-derivation;