mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
22 lines
666 B
Nix
22 lines
666 B
Nix
|
# cd nixpkgs
|
||
|
# nix-build -A tests.pkg-config
|
||
|
{ lib, 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.hostPlatform.system;
|
||
|
config = {
|
||
|
allowUnsupportedSystem = true;
|
||
|
};
|
||
|
overlays = [];
|
||
|
};
|
||
|
in
|
||
|
lib.recurseIntoAttrs {
|
||
|
defaultPkgConfigPackages = allPkgs.callPackage ./test-defaultPkgConfigPackages.nix { };
|
||
|
}
|