2014-11-08 17:27:18 +00:00
|
|
|
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
2016-02-19 21:49:13 +00:00
|
|
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }:
|
2012-12-31 10:59:08 +00:00
|
|
|
|
2016-03-19 10:19:43 +00:00
|
|
|
let version = "3.16.1"; in
|
2012-12-31 10:59:08 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "filezilla-${version}";
|
2013-04-26 20:40:40 +00:00
|
|
|
|
2012-12-31 10:59:08 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
2016-03-19 10:19:43 +00:00
|
|
|
sha256 = "1a6xvpnsjpgdrxla0i2zag30hy825rfsl4ka9p0zj5za9j2ny11v";
|
2012-12-31 10:59:08 +00:00
|
|
|
};
|
2013-04-26 20:40:40 +00:00
|
|
|
|
2012-12-31 10:59:08 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-manualupdatecheck"
|
|
|
|
];
|
2013-04-26 20:39:20 +00:00
|
|
|
|
2013-11-04 21:41:16 +00:00
|
|
|
buildInputs = [
|
2014-11-08 17:27:18 +00:00
|
|
|
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
|
2016-02-19 21:49:13 +00:00
|
|
|
pugixml libfilezilla ];
|
2013-04-26 20:39:20 +00:00
|
|
|
|
2013-11-04 21:41:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-06-24 08:46:34 +00:00
|
|
|
homepage = http://filezilla-project.org/;
|
2013-04-26 20:40:29 +00:00
|
|
|
description = "Graphical FTP, FTPS and SFTP client";
|
2013-11-04 21:41:16 +00:00
|
|
|
license = licenses.gpl2;
|
2013-04-26 20:40:29 +00: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 21:41:16 +00:00
|
|
|
platforms = platforms.linux;
|
2015-06-24 08:46:34 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-12-31 10:59:08 +00:00
|
|
|
};
|
|
|
|
}
|