default.nix: update static compiler

master
Michele Guerini Rocco 2022-01-10 23:38:32 +01:00
parent 1b39e2b060
commit cca7577aa9
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ let
basepkgs = import nixpkgs { inherit system; };
pkgs = if static then basepkgs.pkgsStatic else basepkgs.pkgs;
ghc = if static then pkgs.haskell.packages.integer-simple.ghc8104
ghc = if static then pkgs.haskell.packages.integer-simple.ghc901
else if compiler == "default" then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};