15 lines
301 B
Nix
15 lines
301 B
Nix
# shell containing the tools i most commonly use for haskell work!
|
|
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ghc
|
|
hpack
|
|
stack
|
|
fourmolu # Formatter
|
|
cabal-install
|
|
haskell-language-server
|
|
haskellPackages.implicit-hie # Automatically generate hie.yaml!
|
|
];
|
|
}
|
|
|