From cca7577aa90b78136bfac2367a03afb24d344002 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 10 Jan 2022 23:38:32 +0100 Subject: [PATCH] default.nix: update static compiler --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 0aa0192..2e7b01f 100644 --- a/default.nix +++ b/default.nix @@ -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};