Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDotnetGlobalTool, 4}: 5 6buildDotnetGlobalTool rec { 7 pname = "dotnet-gitversion"; 8 nugetName = "GitVersion.Tool"; 9 version = "6.3.0"; 10 11 nugetHash = "sha256-gtkD+egl9zAfJ4ZsOwb7u82IhBabjBFxU+nv9yQ1HHQ="; 12 13 meta = { 14 description = "From git log to SemVer in no time"; 15 homepage = "https://gitversion.net/"; 16 changelog = "https://github.com/GitTools/GitVersion/releases/tag/${version}"; 17 downloadPage = "https://github.com/GitTools/GitVersion"; 18 license = lib.licenses.mit; 19 platforms = lib.platforms.linux ++ lib.platforms.windows ++ lib.platforms.darwin; 20 maintainers = with lib.maintainers; [ acesyde ]; 21 }; 22}