···11-# Some required nuget packages are not picked up by the deps generation script,
22-# since they are referenced as a SDK reference, which unfortunately only gets
33-# downloaded during build time. So we include them manually.
44-{ fetchNuGet }: (import ./deps.nix { inherit fetchNuGet; }) ++ [
55- (fetchNuGet rec {
66- pname = "Microsoft.DotNet.Arcade.Sdk";
77- version = "7.0.0-beta.22171.2";
88- url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/1a5f89f6-d8da-4080-b15f-242650c914a8/nuget/v3/flat2/microsoft.dotnet.arcade.sdk/${version}/microsoft.dotnet.arcade.sdk.${version}.nupkg";
99- sha256 = "15y26skavivkwhnpfa984if3cnpnllbbwbdsjiyfdcalp32fhmjq";
1010- })
1111-]