2014-11-08 17:27:18 +00:00
|
|
|
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
2019-06-09 12:13:11 +01:00
|
|
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
|
2012-12-31 10:59:08 +00:00
|
|
|
|
2019-05-31 02:38:41 +01:00
|
|
|
let version = "3.42.1"; in
|
2012-12-31 10:59:08 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "filezilla-${version}";
|
2013-04-26 21:40:40 +01:00
|
|
|
|
2012-12-31 10:59:08 +00:00
|
|
|
src = fetchurl {
|
2019-05-31 02:38:41 +01:00
|
|
|
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
|
|
|
|
sha256 = "083ycsycwy1szhp3mzf998wsqa74hmdxdsy07x6k81vp2cxjxijg";
|
2012-12-31 10:59:08 +00:00
|
|
|
};
|
2013-04-26 21:40:40 +01:00
|
|
|
|
2012-12-31 10:59:08 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-manualupdatecheck"
|
2019-05-31 02:38:41 +01:00
|
|
|
"--disable-autoupdatecheck"
|
2012-12-31 10:59:08 +00:00
|
|
|
];
|
2013-04-26 21:39:20 +01:00
|
|
|
|
2016-11-19 21:14:29 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-11-04 21:41:16 +00:00
|
|
|
buildInputs = [
|
2016-11-19 21:14:29 +00:00
|
|
|
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
|
2019-06-09 12:13:11 +01:00
|
|
|
pugixml libfilezilla nettle ];
|
2019-06-01 03:23:44 +01:00
|
|
|
|
2019-06-09 11:29:57 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-11-04 21:41:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://filezilla-project.org/;
|
2013-04-26 21:40:29 +01:00
|
|
|
description = "Graphical FTP, FTPS and SFTP client";
|
2013-11-04 21:41:16 +00:00
|
|
|
license = licenses.gpl2;
|
2013-04-26 21:40:29 +01:00
|
|
|
longDescription = ''
|
|
|
|
FileZilla Client is a free, open source FTP client. It supports
|
|
|
|
FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
|
2017-08-06 23:05:18 +01:00
|
|
|
under many platforms, binaries for Windows, Linux and macOS are
|
2013-04-26 21:40:29 +01:00
|
|
|
provided.
|
|
|
|
'';
|
2013-11-04 21:41:16 +00:00
|
|
|
platforms = platforms.linux;
|
2015-06-24 09:46:34 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-12-31 10:59:08 +00:00
|
|
|
};
|
|
|
|
}
|