Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
738 B
Nix
21 lines
738 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; };
|
|
}
|