nixpkgs/pkgs/tools/filesystems/android-file-transfer/default.nix

25 lines
705 B
Nix
Raw Normal View History

2019-05-18 16:04:12 +01:00
{ stdenv, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
2018-07-23 15:24:12 +01:00
stdenv.mkDerivation rec {
2019-05-18 16:04:12 +01:00
pname = "android-file-transfer";
version = "3.8";
2018-07-23 15:24:12 +01:00
src = fetchFromGitHub {
owner = "whoozle";
repo = "android-file-transfer-linux";
rev = "v${version}";
sha256 = "0sym33a0ccdka2cpzv003n2xniid70z0gkjxx93gd2bajkgs9ggc";
2018-07-23 15:24:12 +01:00
};
2019-05-18 16:04:12 +01:00
nativeBuildInputs = [ cmake readline pkgconfig ];
buildInputs = [ fuse qtbase ];
2018-07-23 15:24:12 +01:00
meta = with stdenv.lib; {
description = "Reliable MTP client with minimalistic UI";
2018-09-12 12:47:45 +01:00
homepage = https://whoozle.github.io/android-file-transfer-linux/;
2018-07-23 15:24:12 +01:00
license = licenses.lgpl21;
maintainers = [ maintainers.xaverdh ];
platforms = platforms.linux;
};
}