{ lib, buildDotnetGlobalTool, dotnetCorePackages, }: buildDotnetGlobalTool rec { pname = "dotnet-outdated"; nugetName = "dotnet-outdated-tool"; version = "4.6.9"; dotnet-sdk = dotnetCorePackages.sdk_10_0; nugetHash = "sha256-LVe/b18hxM9A0Kni6Kl4sE38KgzIihDuc+xRw8qaKv0="; meta = { description = ".NET Core global tool to display and update outdated NuGet packages in a project"; downloadPage = "https://www.nuget.org/packages/dotnet-outdated-tool"; homepage = "https://github.com/dotnet-outdated/dotnet-outdated"; changelog = "https://github.com/dotnet-outdated/dotnet-outdated/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ emilioziniades ]; mainProgram = "dotnet-outdated"; }; }