From 20e4eabc65a728df9401af687a49a64e601ccce7 Mon Sep 17 00:00:00 2001 From: Fiscal Velvet Poet Date: Fri, 12 Nov 2021 16:30:39 +1000 Subject: [PATCH] ghc: bumped to 8.10.4 --- release.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/release.nix b/release.nix index ba302cc..9c6ca5d 100644 --- a/release.nix +++ b/release.nix @@ -1,7 +1,7 @@ let sources = import ./nix/sources.nix; in -{ compiler ? "ghc883" +{ compiler ? "ghc8104" , pkgs ? import sources.nixpkgs { } }: @@ -33,14 +33,11 @@ in packages = p: with p; [ project ]; - #buildInputs = with haskellPackages; [ - # ghcid - # hlint # or ormolu - # niv - # pkgs.cacert # needed for niv - # pkgs.nix # needed for niv - # zlib - #]; + buildInputs = with haskellPackages; [ + ghcid # GHCi based IDE + hlint # or ormolu + pkgs.niv # Nix dependency management + ]; withHoogle = true; }; }