From 5cc08c6cb04e97dcea8f2936a5443225877b5a7b Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Thu, 8 Oct 2020 13:49:54 +1000 Subject: [PATCH] Added hlint --- roles/haskell-dev.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/roles/haskell-dev.nix b/roles/haskell-dev.nix index a0cf57b..93e29fa 100644 --- a/roles/haskell-dev.nix +++ b/roles/haskell-dev.nix @@ -4,9 +4,10 @@ { - environment.systemPackages = with pkgs; [ - haskellPackages.cabal-install # Haskell software automation - haskellPackages.ghc # Glasgow Haskell Compiler + environment.systemPackages = with pkgs.haskellPackages; [ + cabal-install # Haskell software automation + ghc # Glasgow Haskell Compiler + hlint # Haskell source linter ]; }