From ecbea7739fefc252cfd4271cf3895f1280b85099 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Sun, 3 Jan 2021 16:34:59 -0800 Subject: [PATCH] haskellPackages.servant-client[-core]: jailbreak to support QuickCheck 2.14 --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e09f83a056c4..05740979b8ac 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1547,4 +1547,9 @@ self: super: { # https://github.com/Gabriel439/Haskell-Nix-Derivation-Library/pull/10 nix-derivation = doJailbreak super.nix-derivation; + # Break out of overspecified constraint on QuickCheck. + # Fixed by https://github.com/haskell-servant/servant/commit/08579ca0039410e04d6c36c975ddc20165819db6 + servant-client = doJailbreak super.servant-client; + servant-client-core = doJailbreak super.servant-client-core; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super