mio-ops/profiles/haskell-dev.nix

13 lines
255 B
Nix
Raw Permalink 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
hlint # Haskell source linter
2020-03-25 07:31:03 +00:00
];
}