2021-03-30 14:41:01 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, fuse
|
|
|
|
, readline
|
|
|
|
, pkg-config
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, wrapQtAppsHook }:
|
2018-07-23 15:24:12 +01:00
|
|
|
|
2019-07-31 17:47:47 +01:00
|
|
|
mkDerivation rec {
|
2019-05-18 16:04:12 +01:00
|
|
|
pname = "android-file-transfer";
|
2020-12-30 09:32:52 +00:00
|
|
|
version = "4.2";
|
2019-05-18 16:04:12 +01:00
|
|
|
|
2018-07-23 15:24:12 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "whoozle";
|
|
|
|
repo = "android-file-transfer-linux";
|
|
|
|
rev = "v${version}";
|
2020-12-30 09:32:52 +00:00
|
|
|
sha256 = "125rq8ji83nw6chfw43i0h9c38hjqh1qjibb0gnf9wrigar9zc8b";
|
2018-07-23 15:24:12 +01:00
|
|
|
};
|
2019-05-18 16:04:12 +01:00
|
|
|
|
2021-03-30 14:41:01 +01:00
|
|
|
patches = [ ./darwin-dont-vendor-dependencies.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake readline pkg-config wrapQtAppsHook ];
|
2020-11-16 06:57:59 +00:00
|
|
|
buildInputs = [ fuse qtbase qttools ];
|
2019-05-18 16:04:12 +01:00
|
|
|
|
2021-03-30 14:41:01 +01:00
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
|
|
mkdir $out/Applications
|
|
|
|
mv $out/*.app $out/Applications
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-23 15:24:12 +01:00
|
|
|
description = "Reliable MTP client with minimalistic UI";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://whoozle.github.io/android-file-transfer-linux/";
|
2020-12-30 21:02:27 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-07-23 15:24:12 +01:00
|
|
|
maintainers = [ maintainers.xaverdh ];
|
2021-03-30 14:41:01 +01:00
|
|
|
platforms = platforms.unix;
|
2018-07-23 15:24:12 +01:00
|
|
|
};
|
|
|
|
}
|