You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This removes the support for:
- Dev shells with pre-built packages
- Building binaries
These have been almost continually broken, and nobody is really
maintaining them. Better to just do the simple thing we can do reliably,
which is to provide dev shells.
Closes#3800
Copy file name to clipboardExpand all lines: docs/contributing/contributing.md
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -50,16 +50,11 @@ $ cabal build
50
50
If you are using nix 2.4 style command (enabled by `experimental-features = nix-command`),
51
51
you can use `nix develop` instead of `nix-shell` to enter the development shell. To enter the shell with specific GHC versions:
52
52
53
-
*`nix develop`or `nix develop .#haskell-language-server-dev`- default GHC version
54
-
*`nix develop .#haskell-language-server-901-dev` - GHC 9.0.1 (substitute GHC version as appropriate)
53
+
*`nix develop` - default GHC version
54
+
*`nix develop .#shell-ghc90` - GHC 9.0.1 (substitute GHC version as appropriate)
55
55
56
56
If you are looking for a Nix expression to create haskell-language-server binaries, see https://github.com/haskell/haskell-language-server/issues/122
57
57
58
-
To create binaries:
59
-
60
-
*`nix build` or `nix build .#haskell-language-server` - default GHC version
61
-
*`nix build .#haskell-language-server-901` - GHC 9.0.1 (substitute GHC version as appropriate)
62
-
63
58
## Testing
64
59
65
60
The tests make use of the [Tasty](https://github.com/feuerbach/tasty) test framework.
0 commit comments