mio-ops/profiles/haskell-dev.nix

15 lines
357 B
Nix
Raw Normal View History

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