Skip to content

Commit

Permalink
Merge pull request NixOS#256129 from helsinki-systems/fix/testmetapkg…
Browse files Browse the repository at this point in the history
…conf-warning

testers.testMetaPkgConfig: fix warning
  • Loading branch information
roberth authored Sep 20, 2023
2 parents 90a8d5a + 831148b commit 18c2786
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkgs/build-support/testers/testMetaPkgConfig/tester.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
''

0 comments on commit 18c2786

Please sign in to comment.