sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / build-support / testers / testMetaPkgConfig / tester.nix
blob7892a29e4c28de75bea6ea25681f942bc641174d
1 { lib, runCommand, testers }:
3 package:
5 runCommand "check-meta-pkg-config-modules-for-${package.name}" {
6   meta = {
7     description = "Test whether ${package.name} exposes all pkg-config modules ${toString package.meta.pkgConfigModules}";
8   };
9   dependsOn = testers.hasPkgConfigModules { inherit package; };
10 } ''
11   echo "found all of ${toString package.meta.pkgConfigModules}" > "$out"