typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / pkgs / build-support / testers / hasPkgConfigModules / tester.nix
blob75555903827175c8938e6cbc33259c094adb305b
1 # Static arguments
2 { lib, runCommand, pkg-config }:
4 # Tester arguments
5 { package,
6   moduleNames ? package.meta.pkgConfigModules,
7   testName ? "check-pkg-config-${lib.concatStringsSep "-" moduleNames}",
8 }:
10 runCommand testName {
11     nativeBuildInputs = [ pkg-config ];
12     buildInputs = [ package ];
13     inherit moduleNames;
14     meta = {
15       description = "Test whether ${package.name} exposes pkg-config modules ${lib.concatStringsSep ", " moduleNames}.";
16     }
17     # Make sure licensing info etc is preserved, as this is a concern for e.g. cache.nixos.org,
18     # as hydra can't check this meta info in dependencies.
19     # The test itself is just Nixpkgs, with MIT license.
20     // builtins.intersectAttrs
21         {
22           available = throw "unused";
23           broken = throw "unused";
24           insecure = throw "unused";
25           license = throw "unused";
26           maintainers = throw "unused";
27           platforms = throw "unused";
28           unfree = throw "unused";
29           unsupported = throw "unused";
30         }
31         package.meta;
32   } ''
33     for moduleName in $moduleNames; do
34       echo "checking pkg-config module $moduleName in $buildInputs"
35       set +e
36       version="$(pkg-config --modversion $moduleName)"
37       r=$?
38       set -e
39       if [[ $r = 0 ]]; then
40         echo "✅ pkg-config module $moduleName exists and has version $version"
41         printf '%s\t%s\n' "$moduleName" "$version" >> "$out"
42       else
43         echo "These modules were available in the input propagation closure:"
44         pkg-config --list-all
45         echo "❌ pkg-config module $moduleName was not found"
46         false
47       fi
48     done
49   ''