2021-01-25 00:26:54 -08:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkg-config, qtbase, qttools }:
|
2018-07-23 07:24:12 -07:00
|
|
|
|
2019-07-31 09:47:47 -07:00
|
|
|
mkDerivation rec {
|
2019-05-18 08:04:12 -07:00
|
|
|
pname = "android-file-transfer";
|
2020-12-30 01:32:52 -08:00
|
|
|
version = "4.2";
|
2019-05-18 08:04:12 -07:00
|
|
|
|
2018-07-23 07:24:12 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "whoozle";
|
|
|
|
repo = "android-file-transfer-linux";
|
|
|
|
rev = "v${version}";
|
2020-12-30 01:32:52 -08:00
|
|
|
sha256 = "125rq8ji83nw6chfw43i0h9c38hjqh1qjibb0gnf9wrigar9zc8b";
|
2018-07-23 07:24:12 -07:00
|
|
|
};
|
2019-05-18 08:04:12 -07:00
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ cmake readline pkg-config ];
|
2020-11-15 22:57:59 -08:00
|
|
|
buildInputs = [ fuse qtbase qttools ];
|
2019-05-18 08:04:12 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-07-23 07:24:12 -07:00
|
|
|
description = "Reliable MTP client with minimalistic UI";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://whoozle.github.io/android-file-transfer-linux/";
|
2020-12-30 13:02:27 -08:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-07-23 07:24:12 -07:00
|
|
|
maintainers = [ maintainers.xaverdh ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|