mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 12:47:42 +00:00
adbtuifm: init at 0.5.8
This commit is contained in:
parent
e7f04d8cb9
commit
67239c4d4a
29
pkgs/by-name/ad/adbtuifm/package.nix
Normal file
29
pkgs/by-name/ad/adbtuifm/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user