Merge pull request #335282 from nebunebu/meteor-git

meteor-git: init at 0.22.0 (and add self to maintainer-list.nix)
This commit is contained in:
tomberek
2024-08-18 22:41:25 -04:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
+6
View File
@@ -14429,6 +14429,12 @@
githubId = 2287221;
name = "Andreas Zweili";
};
nebunebu = {
email = "neb.nebuchadnezzar@gmail.com";
github = "nebunebu";
githubId = 87451010;
name = "nebu";
};
Necior = {
email = "adrian@sadlocha.eu";
github = "Necior";
+27
View File
@@ -0,0 +1,27 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "meteor-git";
version = "0.22.0";
src = fetchFromGitHub {
owner = "stefanlogue";
repo = "meteor";
rev = "v${version}";
hash = "sha256-aY/gOKvcKtOnL4FI2SM339LU4HoWYCq0W9mK2GyMqso=";
};
vendorHash = "sha256-jKd/eJwp5SZvTrP3RN7xT7ibAB0PQondGR3RT+HQXIo=";
meta = {
description = "CLI tool for writing conventional commits";
mainProgram = "meteor";
homepage = "https://github.com/stefanlogue/meteor";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nebunebu ];
};
}