mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
064ddec598
Use mkDerivation has instead of stdenv.mkDerivation (see #54525).
25 lines
712 B
Nix
25 lines
712 B
Nix
{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }:
|
|
|
|
mkDerivation rec {
|
|
pname = "android-file-transfer";
|
|
version = "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "whoozle";
|
|
repo = "android-file-transfer-linux";
|
|
rev = "v${version}";
|
|
sha256 = "1pwayyd5xrmngfrmv2vwr8ns2wi199xkxf7dks8fl9zmlpizg3c3";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake readline pkgconfig ];
|
|
buildInputs = [ fuse qtbase ];
|
|
|
|
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;
|
|
};
|
|
}
|