Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cde42db

Browse files
committedFeb 14, 2024··
Merge remote-tracking branch 'origin/master' into hkm/nixpkgs-update
# Conflicts: # lib/pkgconf-nixpkgs-map.nix
2 parents 8d051f4 + d1a608f commit cde42db

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed
 

‎flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/pkgconf-nixpkgs-map.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ pkgs:
571571
"alure" = [ "alure" ];
572572
"alure-static" = [ "alure" ];
573573
"aml" = [ "aml" ];
574-
# "amtk-5" = [ "amtk" ];
574+
"amtk-5" = [ "libgedit-amtk" ];
575575
"anthy" = [ "anthy" ];
576576
"apk" = [ "apk-tools" ];
577577
"libapngasm" = [ "apngasm" ];

‎modules/configuration-nix.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ in {
183183
# https://gitlab.haskell.org/ghc/ghc/-/issues/23392
184184
# Using -j1 works around the issue.
185185
packages.gi-gtk.components.library.ghcOptions =
186-
pkgs.lib.optional (__elem config.compiler.nix-name ["ghc961" "ghc962" "ghc963" "ghc964"]) "-j1";
186+
pkgs.lib.optional (
187+
builtins.compareVersions config.compiler.version "9.6.1" >= 0
188+
&& builtins.compareVersions config.compiler.version "9.9" < 0) "-j1";
187189

188190
# With recent versions of nixpkgs fortify causes musl version of the
189191
# text package to fail with:

0 commit comments

Comments
 (0)
Please sign in to comment.