depot/third_party/nixpkgs/pkgs/by-name/gi/gitversion/package.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

20 lines
554 B
Nix

{ lib
, buildDotnetGlobalTool
}:
buildDotnetGlobalTool {
pname = "dotnet-gitversion";
nugetName = "GitVersion.Tool";
version = "5.12.0";
nugetSha256 = "sha256-dclYG2D0uSYqf++y33JCefkYLwbuRCuKd3qLMnx3BDI=";
meta = with lib; {
description = "From git log to SemVer in no time";
homepage = "https://gitversion.net/";
downloadPage = "https://github.com/GitTools/GitVersion";
license = licenses.mit;
platforms = platforms.linux ++ platforms.windows ++ platforms.darwin;
maintainers = with maintainers; [ acesyde ];
};
}