Use the default version of GHC ⬇️

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.
This commit is contained in:
Daniel Thwaites 2021-10-17 15:20:40 +01:00
parent f0323ee468
commit e0295dac9b
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -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 {