meteor-git: init at 0.22.0

This commit is contained in:
nebunebu 2024-08-17 18:34:09 -04:00
parent 8da4899d24
commit b54552aa3f
2 changed files with 28 additions and 1 deletions

View File

@ -14406,7 +14406,7 @@
nebunebu = {
email = "neb.nebuchadnezzar@gmail.com";
github = "nebunebu";
githubId = "87451010";
githubId = 87451010;
name = "nebu";
};
Necior = {

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 ];
};
}