Merge pull request #287467 from oo-infty/init-ugm

ugm: init at 1.4.0
This commit is contained in:
Weijia Wang 2024-04-11 09:45:52 +02:00 committed by GitHub
commit 6271b14d39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 43 additions and 0 deletions

View File

@ -14905,6 +14905,12 @@
github = "ony";
githubId = 11265;
};
oo-infty = {
name = "Justin Chen";
email = "oo-infty@outlook.com";
github = "oo-infty";
githubId = 42143810;
};
ooliver1 = {
name = "Oliver Wilkes";
email = "oliverwilkes2006@icloud.com";

View File

@ -0,0 +1,37 @@
{ lib
, buildGoModule
, fetchFromGitHub
, makeWrapper
}:
buildGoModule rec {
pname = "ugm";
version = "1.4.0";
src = fetchFromGitHub {
owner = "ariasmn";
repo = "ugm";
rev = "v${version}";
hash = "sha256-Co8JN0WEc1I08My9m7iyAshtEO4aszN8/sCvoGFJv2A=";
};
vendorHash = "sha256-34D9fQnmKnOyUqshduLmFiVgcVKi7mDKBs3X5ZQxsuw=";
nativeBuildInputs = [ makeWrapper ];
# Fix unaligned table when running this program under a CJK environment
postFixup = ''
wrapProgram $out/bin/ugm \
--set RUNEWIDTH_EASTASIAN 0
'';
meta = with lib; {
description = "A terminal based UNIX user and group browser";
homepage = "https://github.com/ariasmn/ugm";
changelog = "https://github.com/ariasmn/ugm/releases/tag/${src.rev}";
license = licenses.mit;
mainProgram = "ugm";
platforms = platforms.linux;
maintainers = with maintainers; [ oo-infty ];
};
}