Skip to content

Commit 12e5542

Browse files
authored
Haskell Language Server 2.0.0.1 (input-output-hk#1995)
1 parent b0bbddc commit 12e5542

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

flake.lock

Lines changed: 4 additions & 4 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
flake-compat = { url = "github:input-output-hk/flake-compat/hkm/gitlab-fix"; flake = false; };
1414
flake-utils = { url = "github:hamishmack/flake-utils/hkm/nested-hydraJobs"; };
1515
"hls-1.10" = { url = "github:haskell/haskell-language-server/1.10.0.0"; flake = false; };
16-
"hls-2.0" = { url = "github:haskell/haskell-language-server/2.0.0.0"; flake = false; };
16+
"hls-2.0" = { url = "github:haskell/haskell-language-server/2.0.0.1"; flake = false; };
1717
hydra.url = "hydra";
1818
hackage = {
1919
url = "github:input-output-hk/hackage.nix";

test/haskell-language-server/cabal.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ let
33
project = haskell-nix.cabalProject' {
44
inherit compiler-nix-name evalPackages;
55
name = "haskell-language-server";
6-
src = haskell-nix.sources."hls-1.10";
6+
src = haskell-nix.sources."hls-2.0";
7+
configureArgs = "--disable-benchmarks --disable-tests";
78
};
89
in recurseIntoAttrs {
910
ifdInputs = {
@@ -12,5 +13,5 @@ in recurseIntoAttrs {
1213
build = project.getComponent "haskell-language-server:exe:haskell-language-server";
1314

1415
# hls does not need to be cross compiled.
15-
meta.disabled = stdenv.hostPlatform != stdenv.buildPlatform || __elem compiler-nix-name ["ghc961" "ghc962"];
16+
meta.disabled = stdenv.hostPlatform != stdenv.buildPlatform || __elem compiler-nix-name [];
1617
}

0 commit comments

Comments
 (0)