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 e146358 commit 17abfa0Copy full SHA for 17abfa0
modules/configuration-nix.nix
@@ -163,4 +163,10 @@ in {
163
packages.ghc-paths.components.library.keepGhc = true;
164
# It can also store a symlink to the package DB directory
165
packages.ghc-paths.components.library.keepConfigFiles = true;
166
+
167
+ # There seems to be an issue building gi-gtk with ghc 9.6.1.
168
+ # https://gitlab.haskell.org/ghc/ghc/-/issues/23392
169
+ # Using -j1 works around the issue.
170
+ packages.gi-gtk.components.library.ghcOptions =
171
+ pkgs.lib.optional (__elem config.compiler.nix-name ["ghc961"]) "-j1";
172
}
0 commit comments