From 76ce7bb569f2ccf985f2268477e1f47fe136ba73 Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Tue, 14 Sep 2021 02:58:39 +0100 Subject: [PATCH] Nix upgrades (#102) Switches the default Nix build to use GHC 8.10.7 and NixOS 21.05 --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 91194ad..0e9bba3 100644 --- a/default.nix +++ b/default.nix @@ -4,12 +4,12 @@ haskellNix ? (import (import ./nix/sources.nix)."haskell.nix" { }) # haskell.nix provides access to the nixpkgs pins which are used by our CI, # hence you will be more likely to get cache hits when using these. # But you can also just use your own, e.g. ''. -, nixpkgsSrc ? haskellNix.sources.nixpkgs-2009 +, nixpkgsSrc ? haskellNix.sources.nixpkgs-2105 # haskell.nix provides some arguments to be passed to nixpkgs, including some # patches and also the haskell.nix functionality itself as an overlay. , nixpkgsArgs ? haskellNix.nixpkgsArgs -, compiler-nix-name ? "ghc884" +, compiler-nix-name ? "ghc8107" }: let pkgs = import nixpkgsSrc nixpkgsArgs;