Merge pull request #323477 from tfkhdyt/master

maintainers: add tfkhdyt, urban-cli: init at 0.2.4
This commit is contained in:
Aleksana 2024-07-27 18:31:44 +08:00 committed by GitHub
commit be405514f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -20101,6 +20101,12 @@
githubId = 29044;
name = "Jacek Galowicz";
};
tfkhdyt = {
email = "tfkhdyt@proton.me";
name = "Taufik Hidayat";
github = "tfkhdyt";
githubId = 47195537;
};
tfmoraes = {
name = "Thiago Franco de Moraes";
github = "tfmoraes";

View File

@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "urban-cli";
version = "0.2.4";
src = fetchFromGitHub {
owner = "tfkhdyt";
repo = "urban-cli";
rev = "v${version}";
hash = "sha256-URTEhtOiwb3IDyjRUtUmVTaeDXw4Beg0woWdGxeq098=";
};
vendorHash = "sha256-fEZzX+ecSWKITXczcwm5BGw5OWuixa4XKrEx8z0pxXQ=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "Blazingly fast command line interface for Urban Dictionary";
homepage = "https://github.com/tfkhdyt/urban-cli";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ tfkhdyt ];
mainProgram = "urban-cli";
};
}