2020-11-19 00:13:47 +00:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase, qttools }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "android-file-transfer";
|
2020-12-25 13:55:36 +00:00
|
|
|
version = "4.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "whoozle";
|
|
|
|
repo = "android-file-transfer-linux";
|
|
|
|
rev = "v${version}";
|
2020-12-25 13:55:36 +00:00
|
|
|
sha256 = "0xmnwxr649wdzsa1vf3spl387hxs4pq0rldyrsr9hz43da4v081k";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake readline pkgconfig ];
|
2020-11-19 00:13:47 +00:00
|
|
|
buildInputs = [ fuse qtbase qttools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Reliable MTP client with minimalistic UI";
|
|
|
|
homepage = "https://whoozle.github.io/android-file-transfer-linux/";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.xaverdh ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|