mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
android-file-transfer: init at 3.4
This commit is contained in:
parent
5edb09c3db
commit
6613fea80e
27
pkgs/tools/filesystems/android-file-transfer/default.nix
Normal file
27
pkgs/tools/filesystems/android-file-transfer/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "android-file-transfer-${version}";
|
||||
version = "3.4";
|
||||
src = fetchFromGitHub {
|
||||
owner = "whoozle";
|
||||
repo = "android-file-transfer-linux";
|
||||
rev = "v${version}";
|
||||
sha256 = "1xwl0vk57174gdjhgqkzrirwzd2agdm84q30dq9q376ixgxjrifc";
|
||||
};
|
||||
buildInputs = [ cmake fuse readline pkgconfig qtbase ];
|
||||
buildPhase = ''
|
||||
cmake .
|
||||
make
|
||||
'';
|
||||
installPhase = ''
|
||||
make install
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "Reliable MTP client with minimalistic UI";
|
||||
homepage = http://whoozle.github.io/android-file-transfer-linux/;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = [ maintainers.xaverdh ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -21023,6 +21023,8 @@ with pkgs;
|
||||
|
||||
### MISC
|
||||
|
||||
android-file-transfer = libsForQt5.callPackage ../tools/filesystems/android-file-transfer { };
|
||||
|
||||
antimicro = libsForQt5.callPackage ../tools/misc/antimicro { };
|
||||
|
||||
atari800 = callPackage ../misc/emulators/atari800 { };
|
||||
|
Loading…
Reference in New Issue
Block a user