From 6327d72c55a701e9d5b552b74873c2f9216be4bd Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 14 Nov 2021 00:24:29 +0100 Subject: [PATCH] haskellPackages.ghcide: allow newer implicit-hie-cradle 0.4 is current on hackage, but ghcide has a constrait < 0.4 --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dd1958c3966c..10eeb32906f1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1427,9 +1427,10 @@ self: super: { # 2021-09-14: Tests are broken because of undeterministic variable names hls-tactics-plugin = dontCheck super.hls-tactics-plugin; - # 2021-03-21 Test hangs + # 2021-03-21: Test hangs # https://github.com/haskell/haskell-language-server/issues/1562 - ghcide = dontCheck super.ghcide; + # 2021-11-13: Too strict upper bound on implicit-hie-cradle + ghcide = doJailbreak (dontCheck super.ghcide); data-tree-print = doJailbreak super.data-tree-print;