From d8ff7fe4432b0420c72be4167584ba6f8368af3a Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Wed, 6 May 2020 01:14:10 +1000 Subject: [PATCH] Added cabal-install --- roles/haskell-dev.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/haskell-dev.nix b/roles/haskell-dev.nix index 4bdfebb..a0cf57b 100644 --- a/roles/haskell-dev.nix +++ b/roles/haskell-dev.nix @@ -5,7 +5,8 @@ { environment.systemPackages = with pkgs; [ - haskellPackages.ghc # Glasgow Haskell Compiler + haskellPackages.cabal-install # Haskell software automation + haskellPackages.ghc # Glasgow Haskell Compiler ]; }