1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-24 10:56:56 +00:00
nixpkgs/pkgs/tools/filesystems/android-file-transfer/default.nix

25 lines
731 B
Nix
Raw Normal View History

2020-11-16 06:57:59 +00:00
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase, qttools }:
2018-07-23 15:24:12 +01:00
mkDerivation rec {
2019-05-18 16:04:12 +01:00
pname = "android-file-transfer";
2020-12-14 08:32:03 +00:00
version = "4.1";
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-14 08:32:03 +00:00
sha256 = "0xmnwxr649wdzsa1vf3spl387hxs4pq0rldyrsr9hz43da4v081k";
2018-07-23 15:24:12 +01:00
};
2019-05-18 16:04:12 +01:00
nativeBuildInputs = [ cmake readline pkgconfig ];
2020-11-16 06:57:59 +00:00
buildInputs = [ fuse qtbase qttools ];
2019-05-18 16:04:12 +01:00
2018-07-23 15:24:12 +01:00
meta = with stdenv.lib; {
description = "Reliable MTP client with minimalistic UI";
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;
};
}