biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / ad / adbtuifm / package.nix
blob4fae8a4956575b103a044a89dca5338b9bc50098
2   buildGoModule,
3   fetchFromGitHub,
4   lib,
5 }:
6 buildGoModule rec {
7   pname = "adbtuifm";
8   version = "0.5.8";
9   src = fetchFromGitHub {
10     owner = "darkhz";
11     repo = "adbtuifm";
12     rev = "v${version}";
13     hash = "sha256-TK93O9XwMrsrQT3EG0969HYMtYkK0a4PzG9FSTqHxAY=";
14   };
15   vendorHash = "sha256-voVoowjM90OGWXF4REEevO8XEzT7azRYiDay4bnGBks=";
16   meta = with lib; {
17     description = "TUI-based file manager for the Android Debug Bridge";
18     homepage = "https://github.com/darkhz/adbtuifm";
19     changelog = "https://github.com/darkhz/adbtuifm/releases/tag/v${version}";
20     license = with licenses; [mit];
21     maintainers = with maintainers; [daru-san];
22     mainProgram = "adbtuifm";
23     platforms = platforms.linux;
24   };