From bac43d3b64026317c4e6f6d0e995c46de7acf6ca Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 1 Oct 2022 18:03:10 +0200 Subject: [PATCH] haskell.packages.ghcHEAD: mv configuration-ghc-{head,9.8.x}.nix GHC HEAD is a pre basically pre GHC 9.8 (or rather 9.7 something). Let's name the configuration like the upcoming release, so we can use it immediately when the new release comes out. Instead of keeping the HEAD configuration like we used to, we'd create a new (empty) one. --- .../{configuration-ghc-head.nix => configuration-ghc-9.8.x.nix} | 0 pkgs/top-level/haskell-packages.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/development/haskell-modules/{configuration-ghc-head.nix => configuration-ghc-9.8.x.nix} (100%) diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix similarity index 100% rename from pkgs/development/haskell-modules/configuration-ghc-head.nix rename to pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index b4beafcfd3c4..6a1c4bcf5db9 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -406,7 +406,7 @@ in { ghcHEAD = callPackage ../development/haskell-modules { buildHaskellPackages = bh.packages.ghcHEAD; ghc = bh.compiler.ghcHEAD; - compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { }; + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.8.x.nix { }; }; ghcjs = packages.ghcjs810;