mio-ops/roles/haskell-dev.nix
Craige McWhirter 5cc08c6cb0
Added hlint
2020-10-08 13:49:54 +10:00

14 lines
277 B
Nix

# Configuration for Haskell development
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; [
cabal-install # Haskell software automation
ghc # Glasgow Haskell Compiler
hlint # Haskell source linter
];
}