From 8d6e1018936c4f9f7cd322a6dd08bef6a26d0435 Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 26 Sep 2024 00:36:32 +0100 Subject: [PATCH] tests.pkg-config: extend current Nixpkgs configuration This was enabling aliases on ofborg. --- pkgs/top-level/pkg-config/tests.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/pkg-config/tests.nix b/pkgs/top-level/pkg-config/tests.nix index 786e2ecc534b..dbf766a0cf26 100644 --- a/pkgs/top-level/pkg-config/tests.nix +++ b/pkgs/top-level/pkg-config/tests.nix @@ -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 = [];