nixpkgs/pkgs/by-name/gi/gitversion/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
638 B
Nix
Raw Normal View History

2024-02-22 16:32:18 +00:00
{ lib
, buildDotnetGlobalTool
}:
2024-06-16 20:48:03 +00:00
buildDotnetGlobalTool rec {
2024-02-22 16:32:18 +00:00
pname = "dotnet-gitversion";
nugetName = "GitVersion.Tool";
version = "5.12.0";
nugetHash = "sha256-dclYG2D0uSYqf++y33JCefkYLwbuRCuKd3qLMnx3BDI=";
2024-02-22 16:32:18 +00:00
meta = with lib; {
description = "From git log to SemVer in no time";
homepage = "https://gitversion.net/";
2024-06-16 20:48:03 +00:00
changelog = "https://github.com/GitTools/GitVersion/releases/tag/${version}";
2024-02-22 16:32:18 +00:00
downloadPage = "https://github.com/GitTools/GitVersion";
license = licenses.mit;
platforms = platforms.linux ++ platforms.windows ++ platforms.darwin;
2024-02-22 16:32:18 +00:00
maintainers = with maintainers; [ acesyde ];
};
}