Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
638 B
Nix
21 lines
638 B
Nix
{ lib
|
|
, buildDotnetGlobalTool
|
|
}:
|
|
|
|
buildDotnetGlobalTool rec {
|
|
pname = "dotnet-gitversion";
|
|
nugetName = "GitVersion.Tool";
|
|
version = "5.12.0";
|
|
|
|
nugetHash = "sha256-dclYG2D0uSYqf++y33JCefkYLwbuRCuKd3qLMnx3BDI=";
|
|
|
|
meta = with lib; {
|
|
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 = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.windows ++ platforms.darwin;
|
|
maintainers = with maintainers; [ acesyde ];
|
|
};
|
|
}
|