1
Fork 0
satellite/devshells/haskell.nix
2023-08-14 14:49:55 +03:00

7 lines
168 B
Nix

# shell containing the tools i most commonly use for haskell work!
{ pkgs, ... }:
pkgs.mkShell {
nativebuildinputs = with pkgs; [ ghc hpack stack cabal-install ];
}