Skip to content

Commit 53cecce

Browse files
committed
Disable HLS build for GHC 9.10.2
1 parent 0a075dd commit 53cecce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ in rec {
5757
inherit evalPackages;
5858
src = pkgs.haskell-nix.sources."hls-2.2";
5959
};
60-
} // pkgs.lib.optionalAttrs (ghcFromTo "9.0" "9.11") {
60+
} // pkgs.lib.optionalAttrs (ghcFromTo "9.0" "9.10.2") {
6161
"hls" = tool compiler-nix-name "haskell-language-server" {
6262
inherit evalPackages;
6363
src = pkgs.haskell-nix.sources."hls-2.10";

test/haskell-language-server/cabal.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ in recurseIntoAttrs {
1616
meta.disabled =
1717
stdenv.hostPlatform != stdenv.buildPlatform
1818
|| __compareVersions buildPackages.haskell-nix.compiler.${compiler-nix-name}.version "9.0.1" < 0
19-
|| __compareVersions buildPackages.haskell-nix.compiler.${compiler-nix-name}.version "9.11.0" >= 0;
19+
|| __compareVersions buildPackages.haskell-nix.compiler.${compiler-nix-name}.version "9.10.2" >= 0;
2020
}

0 commit comments

Comments
 (0)