From b8a0cab8d5dca0ac0278ff8027ae3d4d5145fd81 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Wed, 24 Jun 2026 15:27:13 +0200 Subject: [PATCH] testers.hasPkgConfigModules: Fix meta propagation Needs to forward `nonTeamMaintainers` instead of `maintainers`, because the latter is autopopulated from the former, which in case of teams means all teams members would be added as well. This is what caused an update to curlMinimal to request individual team members instead of the team itself: https://github.com/NixOS/nixpkgs/pull/534906 --- pkgs/build-support/testers/hasPkgConfigModules/tester.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/testers/hasPkgConfigModules/tester.nix b/pkgs/build-support/testers/hasPkgConfigModules/tester.nix index b0053820a3d2..b0b76f1e70d0 100644 --- a/pkgs/build-support/testers/hasPkgConfigModules/tester.nix +++ b/pkgs/build-support/testers/hasPkgConfigModules/tester.nix @@ -30,7 +30,7 @@ runCommand testName broken = throw "unused"; insecure = throw "unused"; license = throw "unused"; - maintainers = throw "unused"; + nonTeamMaintainers = throw "unused"; teams = throw "unused"; platforms = throw "unused"; unfree = throw "unused";