ghc: bumped to 8.10.4

This commit is contained in:
Fiscal Velvet Poet 2021-11-12 16:30:39 +10:00
parent 0b004c2e7e
commit 20e4eabc65
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47

View file

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