mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
92b16eef4d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/android-file-transfer/versions
28 lines
778 B
Nix
28 lines
778 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "android-file-transfer-${version}";
|
|
version = "3.7";
|
|
src = fetchFromGitHub {
|
|
owner = "whoozle";
|
|
repo = "android-file-transfer-linux";
|
|
rev = "v${version}";
|
|
sha256 = "0a388pqc0azgn0wy85wb1mjk3b5zb6vcr58l4warwfzhca400zn0";
|
|
};
|
|
buildInputs = [ cmake fuse readline pkgconfig qtbase ];
|
|
buildPhase = ''
|
|
cmake .
|
|
make
|
|
'';
|
|
installPhase = ''
|
|
make install
|
|
'';
|
|
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;
|
|
};
|
|
}
|