about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2023-09-20 15:08:16 -0600
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2023-09-20 15:08:16 -0600
commitb2f85dbf28290f7f11ef31d04019da1df5ebde5d (patch)
treeaed61634f7c1ca38fc7fe42113ac3187faf16508 /pkgs/build-support
parent8d8feb905eb2c52c55e0dda9c1c27e50b2169251 (diff)
parente8dd05c4c439c1ddba7221d9a45245d76ae24372 (diff)
Merge remote-tracking branch 'origin/master' into staging-next
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/testers/testMetaPkgConfig/tester.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/build-support/testers/testMetaPkgConfig/tester.nix b/pkgs/build-support/testers/testMetaPkgConfig/tester.nix
index bee97ace1409c..7892a29e4c28d 100644
--- a/pkgs/build-support/testers/testMetaPkgConfig/tester.nix
+++ b/pkgs/build-support/testers/testMetaPkgConfig/tester.nix
@@ -6,9 +6,7 @@ runCommand "check-meta-pkg-config-modules-for-${package.name}" {
   meta = {
     description = "Test whether ${package.name} exposes all pkg-config modules ${toString package.meta.pkgConfigModules}";
   };
-  dependsOn = map
-    (moduleName: testers.hasPkgConfigModule { inherit package moduleName; })
-    package.meta.pkgConfigModules;
+  dependsOn = testers.hasPkgConfigModules { inherit package; };
 } ''
   echo "found all of ${toString package.meta.pkgConfigModules}" > "$out"
 ''