1
Fork 0
satellite/devshells/haskell.nix
2023-11-04 18:58:09 +01:00

14 lines
276 B
Nix

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