1
Fork 0
satellite/devshells/haskell.nix
2023-09-22 21:08:11 +03:00

13 lines
248 B
Nix

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