From 7950a226f6580beddf86b4b1bca808e0dc053946 Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Sat, 9 Dec 2023 13:08:10 +0800 Subject: [PATCH] tests.trivial-builders.references: specify as empty set instead of null on non-Linux Please Nix CI (OfBorg) with empty set instead of null on non-linux platforms, where NixOS tests are not supported. Co-authored-by: Robert Hensing --- pkgs/build-support/trivial-builders/test/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/trivial-builders/test/default.nix b/pkgs/build-support/trivial-builders/test/default.nix index 2b96426268e1..59dbba3f1841 100644 --- a/pkgs/build-support/trivial-builders/test/default.nix +++ b/pkgs/build-support/trivial-builders/test/default.nix @@ -24,7 +24,7 @@ recurseIntoAttrs { references = if stdenv.hostPlatform.isLinux then references - else null; + else {}; writeCBin = callPackage ./writeCBin.nix {}; writeShellApplication = callPackage ./writeShellApplication.nix {}; writeScriptBin = callPackage ./writeScriptBin.nix {};