2014-11-08 18:27:18 +01:00
|
|
|
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
2016-04-30 09:57:14 +02:00
|
|
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
|
2012-12-31 11:59:08 +01:00
|
|
|
|
2016-08-12 14:08:38 +02:00
|
|
|
let version = "3.20.1"; in
|
2012-12-31 11:59:08 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "filezilla-${version}";
|
2013-04-26 22:40:40 +02:00
|
|
|
|
2012-12-31 11:59:08 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
2016-08-12 14:08:38 +02:00
|
|
|
sha256 = "0bcy0j89y2mpjyzwnz1qa33412n7yl0g8px2r4v7gla25r2x5qwa";
|
2012-12-31 11:59:08 +01:00
|
|
|
};
|
2013-04-26 22:40:40 +02:00
|
|
|
|
2012-12-31 11:59:08 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-manualupdatecheck"
|
|
|
|
];
|
2013-04-26 22:39:20 +02:00
|
|
|
|
2013-11-04 22:41:16 +01:00
|
|
|
buildInputs = [
|
2014-11-08 18:27:18 +01:00
|
|
|
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
|
2016-04-30 09:57:14 +02:00
|
|
|
pugixml libfilezilla nettle ];
|
2013-04-26 22:39:20 +02:00
|
|
|
|
2013-11-04 22:41:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-06-24 10:46:34 +02:00
|
|
|
homepage = http://filezilla-project.org/;
|
2013-04-26 22:40:29 +02:00
|
|
|
description = "Graphical FTP, FTPS and SFTP client";
|
2013-11-04 22:41:16 +01:00
|
|
|
license = licenses.gpl2;
|
2013-04-26 22:40:29 +02: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
|
|
|
|
under many platforms, binaries for Windows, Linux and Mac OS X are
|
|
|
|
provided.
|
|
|
|
'';
|
2013-11-04 22:41:16 +01:00
|
|
|
platforms = platforms.linux;
|
2015-06-24 10:46:34 +02:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-12-31 11:59:08 +01:00
|
|
|
};
|
|
|
|
}
|