Skip to content

Commit 13ccd57

Browse files
committed
nix shells: revert hls to 1.8.0.0
due to haskell/haskell-language-server#3427
1 parent 8062fa3 commit 13ccd57

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

nix/pkgs.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ final: prev: with final; {
2525
};
2626

2727
haskell-language-server = haskell-nix.tool compiler-nix-name "haskell-language-server" {
28-
version = "latest";
28+
# XXX waiting for https://github.com/haskell/haskell-language-server/issues/3427
29+
# before switching back to latest:
30+
version = "1.8.0.0";
2931
inherit (cardanoNodeProject) index-state;
3032
};
3133

nix/workbench/shell.nix

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,9 @@ in project.shellFor {
8383
# (the default is *local* packages which includes them, we select *project* pacakges which doesn't)
8484
packages = ps: builtins.attrValues (haskellLib.selectProjectPackages ps);
8585

86-
tools = {
87-
haskell-language-server = {
88-
version = "latest";
89-
inherit (project) index-state;
90-
};
91-
};
92-
9386
# These programs will be available inside the nix-shell.
9487
nativeBuildInputs = with pkgs; with haskellPackages; with cardanoNodePackages; [
88+
haskell-language-server
9589
cardano-ping
9690
db-analyser
9791
pkgs.graphviz

0 commit comments

Comments
 (0)