adbtuifm: init at 0.5.8

This commit is contained in:
daru 2024-04-22 16:45:18 +02:00
parent e7f04d8cb9
commit 67239c4d4a
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{
buildGoModule,
fetchFromGitHub,
android-tools,
lib,
}:
buildGoModule rec {
pname = "adbtuifm";
version = "0.5.8";
src = fetchFromGitHub {
owner = "darkhz";
repo = "adbtuifm";
rev = "v${version}";
hash = "sha256-TK93O9XwMrsrQT3EG0969HYMtYkK0a4PzG9FSTqHxAY=";
};
vendorHash = "sha256-voVoowjM90OGWXF4REEevO8XEzT7azRYiDay4bnGBks=";
buildInputs = [
android-tools
];
meta = with lib; {
description = "adbtuifm is a TUI-based file manager for the Android Debug Bridge, to make transfers between the device and client easier";
homepage = "https://github.com/darkhz/adbtuifm";
changelog = "https:/github.com/darkhz/adbtuifm/releases/tag/v${version}";
license = with licenses; [mit];
maintainers = with maintainers; [daru-san];
mainProgram = "adbtuifm";
platforms = platforms.linux;
};
}