Skip to content

Commit 4a2b7df

Browse files
committed
Add HLS 2.8
1 parent d5f5c7e commit 4a2b7df

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

build.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ in rec {
6262
inherit evalPackages;
6363
src = pkgs.haskell-nix.sources."hls-2.2";
6464
};
65-
} // pkgs.lib.optionalAttrs (ghcFromTo "9.0" "9.10") {
66-
"hls-27" = tool compiler-nix-name "haskell-language-server" {
65+
} // pkgs.lib.optionalAttrs (ghcFromTo "9.0" "9.11") {
66+
"hls-28" = tool compiler-nix-name "haskell-language-server" {
6767
inherit evalPackages;
68-
src = pkgs.haskell-nix.sources."hls-2.7";
68+
src = pkgs.haskell-nix.sources."hls-2.8";
6969
};
7070
})
7171
);

flake.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"hls-2.5" = { url = "github:haskell/haskell-language-server/2.5.0.0"; flake = false; };
3232
"hls-2.6" = { url = "github:haskell/haskell-language-server/2.6.0.0"; flake = false; };
3333
"hls-2.7" = { url = "github:haskell/haskell-language-server/2.7.0.0"; flake = false; };
34+
"hls-2.8" = { url = "github:haskell/haskell-language-server/2.8.0.0"; flake = false; };
3435
hydra.url = "hydra";
3536
hackage = {
3637
url = "github:input-output-hk/hackage.nix";

test/haskell-language-server/cabal.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ let
33
project = haskell-nix.cabalProject' {
44
inherit compiler-nix-name evalPackages;
55
name = "haskell-language-server";
6-
src = haskell-nix.sources."hls-2.7";
6+
src = haskell-nix.sources."hls-2.8";
77
configureArgs = "--disable-benchmarks --disable-tests";
88
};
99
in recurseIntoAttrs {

0 commit comments

Comments
 (0)