We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4299059 commit ec0aa36Copy full SHA for ec0aa36
modules/configuration-nix.nix
@@ -183,7 +183,9 @@ in {
183
# https://gitlab.haskell.org/ghc/ghc/-/issues/23392
184
# Using -j1 works around the issue.
185
packages.gi-gtk.components.library.ghcOptions =
186
- pkgs.lib.optional (__elem config.compiler.nix-name ["ghc961" "ghc962" "ghc963" "ghc964"]) "-j1";
+ pkgs.lib.optional (
187
+ builtins.compareVersions config.compiler.version "9.6.1" >= 0
188
+ && builtins.compareVersions config.compiler.version "9.9" < 0) "-j1";
189
190
# With recent versions of nixpkgs fortify causes musl version of the
191
# text package to fail with:
0 commit comments