tests.pkg-config: extend current Nixpkgs configuration

This was enabling aliases on ofborg.
This commit is contained in:
Emily 2024-09-26 00:36:32 +01:00
parent 6a151ca956
commit 8d6e101893

View File

@ -1,6 +1,6 @@
# cd nixpkgs
# nix-build -A tests.pkg-config
{ lib, stdenv, ... }:
{ lib, config, stdenv, ... }:
let
# defaultPkgConfigPackages test needs a Nixpkgs with allowUnsupportedPlatform
@ -10,7 +10,7 @@ let
allPkgs = import ../default.nix {
system = stdenv.hostPlatform.system;
localSystem = stdenv.buildPlatform.system;
config = {
config = config // {
allowUnsupportedSystem = true;
};
overlays = [];