1
Fork 0
satellite/devshells/haskell.nix
Matei Adriel ca3bcfd3ac
Fix /nix/store taking up a lot of storage
Additionally:
- add arcaea wiki search engine
- fix haskell devshell not evaluating
- remove a big dependency from my neovim setup
2023-12-15 03:53:22 +01:00

15 lines
317 B
Nix

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