From 498ec28b26e3bbcef92ea4780620a0d8a2526d06 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Wed, 22 Dec 2021 18:13:48 +1000 Subject: [PATCH] ghc: Upgraded to 8.10.7 --- release.nix | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/release.nix b/release.nix index 78c4ce9..e3c6ac0 100644 --- a/release.nix +++ b/release.nix @@ -1,5 +1,5 @@ let sources = import ./nix/sources.nix; -in { compiler ? "ghc883", pkgs ? import sources.nixpkgs { } }: +in { compiler ? "ghc8107", pkgs ? import sources.nixpkgs { } }: let inherit (pkgs.lib.trivial) flip pipe; @@ -24,14 +24,12 @@ in { shell = haskellPackages.shellFor { 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 + hlint # or ormolu + pkgs.niv + zlib + ]; withHoogle = true; }; }