We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057f9bf commit 507cdedCopy full SHA for 507cded
modules/hackage-quirks.nix
@@ -60,6 +60,11 @@ in [
60
+ lib.optionalString (__elem config.compiler-nix-name ["ghc921" "ghc922" "ghc923" "ghc924"]) ''
61
package haskell-language-server
62
flags: -haddockcomments
63
+ ''
64
+ # Exclude `retrie` that does not actually work with older versions of GHC.
65
+ # TODO Remove this once https://github.com/facebookincubator/retrie/pull/51 is fixed somehow
66
+ + lib.optionalString (__elem config.compiler-nix-name ["ghc865" "ghc884" "ghc8105" "ghc8106" "ghc8107" "ghc901" "ghc902"]) ''
67
+ constraints: retrie <1.2.1
68
'');
69
}
70
)
0 commit comments