about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-01-03 16:34:59 -0800
committerRyan Burns <rtburns@protonmail.com>2021-01-03 16:34:59 -0800
commitecbea7739fefc252cfd4271cf3895f1280b85099 (patch)
treec57fe2b64ddc3b6077f64a4b5cb7a76cc26fa3b4
parent77d190f10931c1d06d87bf6d772bf65346c71777 (diff)
haskellPackages.servant-client[-core]: jailbreak to support QuickCheck 2.14
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index e09f83a056c43..05740979b8ac1 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