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 <roberth@users.noreply.github.com>
This commit is contained in:
Yueh-Shun Li
2023-12-09 13:08:10 +08:00
committed by GitHub
co-authored by Robert Hensing
parent 9fba2b0fd7
commit 7950a226f6
@@ -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 {};