mio-ops/profiles/haskell-dev.nix

15 lines
357 B
Nix
Raw Normal View History

2020-03-25 17:31:03 +10:00
# Configuration for Haskell development
{
2022-03-08 00:26:15 +10:00
config,
pkgs,
...
}: {
2020-10-08 13:49:54 +10:00
environment.systemPackages = with pkgs.haskellPackages; [
2021-11-16 14:57:23 +10:00
cabal-install # Haskell software automation
ghc # Glasgow Haskell Compiler
haskell-language-server # LSP server for GHC
2021-11-16 14:57:23 +10:00
hlint # Haskell source linter
stylish-haskell # simple Haskell code prettifier
2020-03-25 17:31:03 +10:00
];
}