nuget-to-nix: set nullglob

This stops nuget-to-nix from failing when there are no packages in the
output.

+1
+1
pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh
··· 1 #!@runtimeShell@ 2 3 set -euo pipefail 4 5 export PATH="@binPath@" 6 # used for glob ordering of package names
··· 1 #!@runtimeShell@ 2 3 set -euo pipefail 4 + shopt -s nullglob 5 6 export PATH="@binPath@" 7 # used for glob ordering of package names