dotnet: remove nuget-package-hook from runtime packages (#343978)

This commit is contained in:
David McFarland 2024-09-23 15:04:21 -03:00 committed by GitHub
commit 08513320d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,8 +35,8 @@
});
propagatedBuildInputs =
(args.propagatedBuildInputs or [])
++ [ nugetPackageHook ];
(args.propagatedBuildInputs or [ ])
++ lib.optional (type == "sdk") nugetPackageHook;
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ installShellFiles ];