Merge pull request #289799 from acesyde/feature/gitversion

gitversion: init at 5.12.0
This commit is contained in:
Artturin 2024-05-03 23:17:17 +03:00 committed by GitHub
commit af8edf6d75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 26 additions and 0 deletions

View File

@ -435,6 +435,12 @@
github = "a-camarillo";
githubId = 58638902;
};
acesyde = {
name = "Pierre-Emmanuel Mercier";
email = "acesyde@gmail.com";
github = "acesyde";
githubId = 958435;
};
aciceri = {
name = "Andrea Ciceri";
email = "andrea.ciceri@autistici.org";

View File

@ -0,0 +1,20 @@
{ 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;
maintainers = with maintainers; [ acesyde ];
};
}