From f50da30a5ddca84b5f4dc87490ba6330d3dd0ff2 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 1 Jul 2023 19:31:29 +0200 Subject: haskell.packages.*.system-cxx-std-lib: make sure attr always exists GHC 9.4 introduced a virtual package for linking against the C++ standard library. Since some packages depend on it when configured with GHC 9.4 (as hackage2nix does), we need to make sure the attribute exists or some packages will fail to evaluate. The may still build, even though there is no shim for lower GHC versions (as far as I know). --- pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix') diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index 9ee544d3f7906..38c5f16b8eb4a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -51,6 +51,9 @@ self: super: { # Need the Cabal-syntax-3.6.0.0 fake package for Cabal < 3.8 to allow callPackage and the constraint solver to work Cabal-syntax = self.Cabal-syntax_3_6_0_0; + # These core package only exist for GHC >= 9.4. The best we can do is feign + # their existence to callPackages, but their is no shim for lower GHC versions. + system-cxx-std-lib = null; # weeder == 2.5.* requires GHC 9.4 weeder = doDistribute self.weeder_2_4_1; -- cgit 1.4.1