···1-# Some required nuget packages are not picked up by the deps generation script,
2-# since they are referenced as a SDK reference, which unfortunately only gets
3-# downloaded during build time. So we include them manually.
4-{ fetchNuGet }: (import ./deps.nix { inherit fetchNuGet; }) ++ [
5- (fetchNuGet rec {
6- pname = "Microsoft.DotNet.Arcade.Sdk";
7- version = "7.0.0-beta.22171.2";
8- 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";
9- sha256 = "15y26skavivkwhnpfa984if3cnpnllbbwbdsjiyfdcalp32fhmjq";
10- })
11-]