Unverified Commit af8edf6d authored by Artturin's avatar Artturin Committed by GitHub
Browse files

Merge pull request #289799 from acesyde/feature/gitversion

 gitversion: init at 5.12.0 
parents 99dcdbd0 da374467
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+20 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}