summary refs log tree commit diff
path: root/pkgs/build-support/dotnet
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2022-09-30 16:02:32 -0300
committerDavid McFarland <corngood@gmail.com>2022-12-19 15:36:25 -0400
commit507eff880d1f07988dbff228306a2eadceac4c10 (patch)
tree759d1d992b342e24972615cd583011e30297b633 /pkgs/build-support/dotnet
parent06e4d89943603a309db2d5fe07ff2abf59edc8f5 (diff)
downloadnixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar.gz
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar.bz2
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar.lz
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar.xz
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.tar.zst
nixpkgs-507eff880d1f07988dbff228306a2eadceac4c10.zip
build-dotnet: make passthru.packages a derivation
Diffstat (limited to 'pkgs/build-support/dotnet')
-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";