From e0295dac9bbb5bfac0dfd9adb778c2dcdb1304f3 Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Sun, 17 Oct 2021 15:20:40 +0100 Subject: [PATCH] Use the default version of GHC :arrow_down: The default version has libraries available on cache.nixos.org, rather than having to compile them locally during evaluation. Stylix did not depend on anything from GHC901. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 95702aa4..19b420ce 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ let pkgs = nixpkgs.legacyPackages.${system}; - ghc = pkgs.haskell.packages.ghc901.ghcWithPackages + ghc = pkgs.haskellPackages.ghcWithPackages (haskellPackages: with haskellPackages; [ json JuicyPixels ]); palette-generator = pkgs.stdenvNoCC.mkDerivation {