depot/third_party/nixpkgs/pkgs/top-level/pkg-config/tests.nix

28 lines
753 B
Nix

# cd nixpkgs
# nix-build -A tests.pkg-config
{
lib,
config,
stdenv,
...
}:
let
# defaultPkgConfigPackages test needs a Nixpkgs with allowUnsupportedPlatform
# in order to filter out the unsupported packages without throwing any errors
# tryEval would be too fragile, masking different problems as if they're
# unsupported platform problems.
allPkgs = import ../default.nix {
system = stdenv.hostPlatform.system;
localSystem = stdenv.buildPlatform.system;
config = config // {
allowUnsupportedSystem = true;
};
overlays = [ ];
};
in
lib.recurseIntoAttrs {
defaultPkgConfigPackages = allPkgs.callPackage ./test-defaultPkgConfigPackages.nix { } // {
__recurseIntoDerivationForReleaseJobs = true;
};
}