core/pkgs/build-support/testers/testMetaPkgConfig/tester.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
415 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{
lib,
runCommand,
testers,
}:
package:
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 = testers.hasPkgConfigModules { inherit package; };
}
''
echo "found all of ${toString package.meta.pkgConfigModules}" > "$out"
''