1
Fork 0
satellite/devshells/haskell.nix

13 lines
248 B
Nix
Raw 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
cabal-install
haskellPackages.implicit-hie # Automatically generate hie.yaml!
];
}