nix: dont set __nugetDeps if nugetDeps isnt set

This commit is contained in:
Rory&
2026-04-12 21:19:29 +02:00
parent c24ef4c8a3
commit afceef45b6

View File

@@ -43,7 +43,7 @@ pkgs.buildDotnetModule (pkgs.lib.recursiveUpdate
};
}
// {
__nugetDeps = args.nugetDeps;
__nugetDeps = if args ? nugetDeps then args.nugetDeps else null;
}
)
(