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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
957 B
Nix
Raw Normal View History

{ lib
, stdenv
, mkDerivation
, fetchFromGitHub
, cmake
, fuse
, readline
, pkg-config
, qtbase
, qttools
, wrapQtAppsHook }:
2018-07-23 14:24:12 +00:00
mkDerivation rec {
2019-05-18 15:04:12 +00:00
pname = "android-file-transfer";
2023-12-13 03:54:15 +00:00
version = "4.3";
2019-05-18 15:04:12 +00:00
2018-07-23 14:24:12 +00:00
src = fetchFromGitHub {
owner = "whoozle";
repo = "android-file-transfer-linux";
rev = "v${version}";
2023-12-13 03:54:15 +00:00
sha256 = "sha256-UOARMtOnG6tekmOsIWRZbl2y32mR0kPD6w7IHRG8VsU=";
2018-07-23 14:24:12 +00:00
};
2019-05-18 15:04:12 +00: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 15:04:12 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
mkdir $out/Applications
mv $out/*.app $out/Applications
'';
meta = with lib; {
2018-07-23 14:24:12 +00:00
description = "Reliable MTP client with minimalistic UI";
homepage = "https://whoozle.github.io/android-file-transfer-linux/";
license = licenses.lgpl21Plus;
2018-07-23 14:24:12 +00:00
maintainers = [ maintainers.xaverdh ];
platforms = platforms.unix;
2018-07-23 14:24:12 +00:00
};
}