nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 778 B view raw
1{ 2 lib, 3 buildDotnetGlobalTool, 4 dotnetCorePackages, 5}: 6buildDotnetGlobalTool rec { 7 pname = "dotnet-outdated"; 8 nugetName = "dotnet-outdated-tool"; 9 version = "4.6.9"; 10 11 dotnet-sdk = dotnetCorePackages.sdk_10_0; 12 13 nugetHash = "sha256-LVe/b18hxM9A0Kni6Kl4sE38KgzIihDuc+xRw8qaKv0="; 14 15 meta = { 16 description = ".NET Core global tool to display and update outdated NuGet packages in a project"; 17 downloadPage = "https://www.nuget.org/packages/dotnet-outdated-tool"; 18 homepage = "https://github.com/dotnet-outdated/dotnet-outdated"; 19 changelog = "https://github.com/dotnet-outdated/dotnet-outdated/releases/tag/v${version}"; 20 license = lib.licenses.mit; 21 maintainers = with lib.maintainers; [ emilioziniades ]; 22 mainProgram = "dotnet-outdated"; 23 }; 24}