chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / di / distrobox-tui / package.nix
blob858bcea643f890b60ef40de18a9d7b0b40260aa1
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "distrobox-tui";
9   version = "0.1.0";
11   src = fetchFromGitHub {
12     owner = "phanirithvij";
13     repo = "distrobox-tui";
14     rev = "v${version}";
15     hash = "sha256-J5stvhUNaU9YMczE56vC5bw2g67zsdVWiCi8k6KV/pU=";
16   };
18   vendorHash = "sha256-F7X3FBM/F0uPxbM3en0sk9a58O/meKnVsASgIlL7FCo=";
20   ldflags = [ "-s" ];
22   meta = with lib; {
23     description = "A TUI for DistroBox";
24     changelog = "https://github.com/phanirithvij/distrobox-tui/releases/tag/v${version}";
25     homepage = "https://github.com/phanirithvij/distrobox-tui";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ phanirithvij ];
28     mainProgram = "distrobox-tui";
29   };