1
Fork 0
satellite/devshells/haskell.nix

15 lines
317 B
Nix
Raw Permalink Normal View History

# shell containing the tools i most commonly use for haskell work!
{ pkgs, ... }:
pkgs.mkShell {
2023-09-22 20:08:11 +02:00
buildInputs = with pkgs; [
ghc
hpack
stack
haskellPackages.fourmolu # Formatter
2023-09-22 20:08:11 +02:00
cabal-install
2023-11-04 18:58:09 +01:00
haskell-language-server
2023-09-22 20:08:11 +02:00
haskellPackages.implicit-hie # Automatically generate hie.yaml!
];
}