|
51 | 51 |
|
52 | 52 | # not sure if this is the correct way to get lsp* packages in
|
53 | 53 | lsp = {
|
54 |
| - url = "https://hackage.haskell.org/package/lsp-2.1.0.0/lsp-2.1.0.0.tar.gz"; |
| 54 | + url = "https://hackage.haskell.org/package/lsp-2.2.0.0/lsp-2.2.0.0.tar.gz"; |
55 | 55 | flake = false;
|
56 | 56 | };
|
57 | 57 | lsp-types = {
|
58 |
| - url = "https://hackage.haskell.org/package/lsp-types-2.0.1.0/lsp-types-2.0.1.0.tar.gz"; |
| 58 | + url = "https://hackage.haskell.org/package/lsp-types-2.0.2.0/lsp-types-2.0.2.0.tar.gz"; |
59 | 59 | flake = false;
|
60 | 60 | };
|
61 | 61 | lsp-test = {
|
62 |
| - url = "https://hackage.haskell.org/package/lsp-test-0.15.0.1/lsp-test-0.15.0.1.tar.gz"; |
| 62 | + url = "https://hackage.haskell.org/package/lsp-test-0.16.0.0/lsp-test-0.16.0.0.tar.gz"; |
63 | 63 | flake = false;
|
64 | 64 | };
|
65 | 65 |
|
|
244 | 244 | # Theses programs are tools, used as binary, independently of the
|
245 | 245 | # version of GHC.
|
246 | 246 | # The drawback of this approach is that our shell may pull two GHC
|
247 |
| - # version in scope (the default one, and the one defined in |
248 |
| - # `hpkgs`.) |
| 247 | + # version in scope (the default one, an |
249 | 248 | # The advantage is that we won't have to rebuild theses tools (and
|
250 | 249 | # dependencies) with a recent GHC which may not be supported by
|
251 | 250 | # them.
|
|
376 | 375 | haskell-language-server-96 = mkExe ghc96;
|
377 | 376 | };
|
378 | 377 |
|
379 |
| - devShells = simpleDevShells // nixDevShells // envShells // { |
| 378 | + devShells2 = simpleDevShells // nixDevShells // envShells // { |
380 | 379 | default = simpleDevShells.haskell-language-server-dev;
|
381 | 380 | };
|
382 | 381 |
|
|
402 | 401 |
|
403 | 402 | # The attributes for the default shell and package changed in recent versions of Nix,
|
404 | 403 | # these are here for backwards compatibility with the old versions.
|
405 |
| - devShell = devShells.default; |
| 404 | + devShell = devShells2.default; |
406 | 405 | defaultPackage = packages.default;
|
407 | 406 | });
|
408 | 407 |
|
|
0 commit comments