tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
haskell-language-server: fix build with hiedb 0.5
Naïm Favier
2 years ago
b3f76d0e
0db3a34b
+9
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
haskell-modules
configuration-common.nix
+9
-1
pkgs/development/haskell-modules/configuration-common.nix
reviewed
···
117
117
hls-test-utils = doJailbreak super.hls-test-utils;
118
118
hls-alternate-number-format-plugin = doJailbreak super.hls-alternate-number-format-plugin;
119
119
hls-cabal-plugin = doJailbreak super.hls-cabal-plugin;
120
120
-
hls-call-hierarchy-plugin = doJailbreak super.hls-call-hierarchy-plugin;
121
120
hls-explicit-fixity-plugin = doJailbreak super.hls-explicit-fixity-plugin;
122
121
hls-floskell-plugin = doJailbreak super.hls-floskell-plugin;
123
122
hls-gadt-plugin = doJailbreak super.hls-gadt-plugin;
123
123
+
124
124
+
hls-call-hierarchy-plugin = appendPatch (pkgs.fetchpatch {
125
125
+
url = "https://github.com/haskell/haskell-language-server/pull/3943.patch";
126
126
+
relative = "plugins/hls-call-hierarchy-plugin";
127
127
+
hash = "sha256-TOIn4/AGQr8o3r6gI6/vQsdWw/UGyO/599X0pCTYJjE=";
128
128
+
}) (doJailbreak super.hls-call-hierarchy-plugin);
129
129
+
130
130
+
# 2024-01-15: allow hiedb 0.5 https://github.com/haskell/haskell-language-server/pull/3943
131
131
+
ghcide = doJailbreak super.ghcide;
124
132
125
133
###########################################
126
134
### END HASKELL-LANGUAGE-SERVER SECTION ###