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 = propagatedBuildInputs =
(args.propagatedBuildInputs or []) (args.propagatedBuildInputs or [ ])
++ [ nugetPackageHook ]; ++ lib.optional (type == "sdk") nugetPackageHook;
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ installShellFiles ]; nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ installShellFiles ];