23 stdenv.mkDerivation rec {
28 url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.xz";
29 hash = "sha256-5drcgH25mc60ZJhPl00+9ZtWLFlUZlgFfpsgEYOtr5o=";
33 "--disable-manualupdatecheck"
34 "--disable-autoupdatecheck"
37 nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook3 ];
53 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices Security ];
55 preBuild = lib.optionalString (stdenv.hostPlatform.isDarwin) ''
56 export MACOSX_DEPLOYMENT_TARGET=11.0
59 enableParallelBuilding = true;
62 homepage = "https://filezilla-project.org/";
63 description = "Graphical FTP, FTPS and SFTP client";
65 FileZilla Client is a free, open source FTP client. It supports
66 FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
67 under many platforms, binaries for Windows, Linux and macOS are
70 license = licenses.gpl2;
71 platforms = platforms.linux;
72 maintainers = with maintainers; [ pSub ];