summary refs log tree commit diff
path: root/pkgs/build-support/dotnet/build-dotnet-module/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/dotnet/build-dotnet-module/default.nix')
-rw-r--r--pkgs/build-support/dotnet/build-dotnet-module/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/build-support/dotnet/build-dotnet-module/default.nix b/pkgs/build-support/dotnet/build-dotnet-module/default.nix
index 932ebceceac..4ca6ca0f247 100644
--- a/pkgs/build-support/dotnet/build-dotnet-module/default.nix
+++ b/pkgs/build-support/dotnet/build-dotnet-module/default.nix
@@ -112,10 +112,7 @@ let
   # this contains all the nuget packages that are implicitly referenced by the dotnet
   # build system. having them as separate deps allows us to avoid having to regenerate
   # a packages dependencies when the dotnet-sdk version changes
-  sdkDeps = mkNugetDeps {
-    name = "dotnet-sdk-${dotnet-sdk.version}-deps";
-    nugetDeps = dotnet-sdk.passthru.packages;
-  };
+  sdkDeps = dotnet-sdk.packages;
 
   sdkSource = mkNugetSource {
     name = "dotnet-sdk-${dotnet-sdk.version}-source";