File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 60
60
chmod +x $dest
61
61
'' ;
62
62
63
- mkDevShell = hpkgs : with pkgs ; mkShell {
63
+ mkDevShell = hpkgs : with pkgs ; pkgs . mkShell {
64
64
name = "haskell-language-server-dev-ghc${ hpkgs . ghc . version } " ;
65
65
# For binary Haskell tools, we use the default Nixpkgs GHC version.
66
66
# This removes a rebuild with a different GHC version. The drawback of
106
106
in {
107
107
# Developement shell with only dev tools
108
108
devShells = {
109
- default = mkDevShell pkgs . haskellPackages ;
109
+ default = pkgs . mkShell {
110
+ buildInputs = with pkgs ; [ zlib haskell . compiler . ghc910 cabal-install ] ;
111
+ } ;
110
112
shell-ghc96 = mkDevShell pkgs . haskell . packages . ghc96 ;
111
113
shell-ghc98 = mkDevShell pkgs . haskell . packages . ghc98 ;
112
114
shell-ghc910 = mkDevShell pkgs . haskell . packages . ghc910 ;
You can’t perform that action at this time.
0 commit comments