ghc: Upgraded to 8.10.7

This commit is contained in:
Serĉanto de Scio 2021-12-22 18:13:48 +10:00
parent 882780e00b
commit 498ec28b26
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -1,5 +1,5 @@
let sources = import ./nix/sources.nix; let sources = import ./nix/sources.nix;
in { compiler ? "ghc883", pkgs ? import sources.nixpkgs { } }: in { compiler ? "ghc8107", pkgs ? import sources.nixpkgs { } }:
let let
inherit (pkgs.lib.trivial) flip pipe; inherit (pkgs.lib.trivial) flip pipe;
@ -24,14 +24,12 @@ in {
shell = haskellPackages.shellFor { shell = haskellPackages.shellFor {
packages = p: with p; [ project ]; packages = p: with p; [ project ];
#buildInputs = with haskellPackages; [ buildInputs = with haskellPackages; [
# ghcid ghcid
# hlint # or ormolu hlint # or ormolu
# niv pkgs.niv
# pkgs.cacert # needed for niv zlib
# pkgs.nix # needed for niv ];
# zlib
#];
withHoogle = true; withHoogle = true;
}; };
} }