Merge pull request #289799 from acesyde/feature/gitversion

gitversion: init at 5.12.0

Artturin af8edf6d 99dcdbd0

Changed files
+26
maintainers
pkgs
by-name
gi
gitversion
+6
maintainers/maintainer-list.nix
···
github = "a-camarillo";
githubId = 58638902;
};
aciceri = {
name = "Andrea Ciceri";
email = "andrea.ciceri@autistici.org";
···
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";
+20
pkgs/by-name/gi/gitversion/package.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;
+
maintainers = with maintainers; [ acesyde ];
+
};
+
}