23 lines
651 B
Nix
23 lines
651 B
Nix
{
|
|
lib,
|
|
buildDotnetGlobalTool,
|
|
}:
|
|
|
|
buildDotnetGlobalTool rec {
|
|
pname = "dotnet-gitversion";
|
|
nugetName = "GitVersion.Tool";
|
|
version = "6.3.0";
|
|
|
|
nugetHash = "sha256-gtkD+egl9zAfJ4ZsOwb7u82IhBabjBFxU+nv9yQ1HHQ=";
|
|
|
|
meta = {
|
|
description = "From git log to SemVer in no time";
|
|
homepage = "https://gitversion.net/";
|
|
changelog = "https://github.com/GitTools/GitVersion/releases/tag/${version}";
|
|
downloadPage = "https://github.com/GitTools/GitVersion";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux ++ lib.platforms.windows ++ lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [ acesyde ];
|
|
};
|
|
}
|