chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ug / ugm / package.nix
blobdf62946c44522c94a6e58853a20321c3441093b6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , makeWrapper
5 , nix-update-script
6 }:
8 buildGoModule rec {
9   pname = "ugm";
10   version = "1.5.0";
12   src = fetchFromGitHub {
13     owner = "ariasmn";
14     repo = "ugm";
15     rev = "v${version}";
16     hash = "sha256-Ui/JYU/ZbMP8E20vWHah1GFFVu5E4xf0RaVv9X0QnR4=";
17   };
19   vendorHash = "sha256-34D9fQnmKnOyUqshduLmFiVgcVKi7mDKBs3X5ZQxsuw=";
21   nativeBuildInputs = [ makeWrapper ];
23   # Fix unaligned table when running this program under a CJK environment
24   postFixup = ''
25     wrapProgram $out/bin/ugm \
26         --set RUNEWIDTH_EASTASIAN 0
27   '';
29   passthru.updateScript = nix-update-script {};
31   meta = with lib; {
32     description = "Terminal based UNIX user and group browser";
33     homepage = "https://github.com/ariasmn/ugm";
34     changelog = "https://github.com/ariasmn/ugm/releases/tag/${src.rev}";
35     license = licenses.mit;
36     mainProgram = "ugm";
37     platforms = platforms.linux;
38     maintainers = with maintainers; [ oosquare ];
39   };