ghc: Upgraded to 8.10.7

consensus^2
Serĉanto de Scio 2021-12-22 18:13:48 +10:00
parent 882780e00b
commit 498ec28b26
Signed by: sercanto
GPG Key ID: 7DBA9F5689EFB6AA
1 changed files with 7 additions and 9 deletions

View File

@ -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;
};
}