filezilla: bump 3.6.0.2 -> 3.7.3
Includes security fixes, bug fixes and some (minor) new features. Changelog is available here: https://filezilla-project.org/versions.php Also: * break long lines * add meta.platforms * use licenses.gpl2 attribute instead of a literal string.
This commit is contained in:
parent
06f4398b46
commit
8867304b5e
@ -1,30 +1,33 @@
|
|||||||
{ stdenv, fetchurl, dbus, gnutls2, wxGTK28, libidn, tinyxml, gettext, pkgconfig, xdg_utils, gtk2, sqlite }:
|
{ stdenv, fetchurl, dbus, gnutls2, wxGTK28, libidn, tinyxml, gettext
|
||||||
|
, pkgconfig, xdg_utils, gtk2, sqlite }:
|
||||||
|
|
||||||
let version = "3.6.0.2"; in
|
let version = "3.7.3"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "filezilla-${version}";
|
name = "filezilla-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
||||||
sha256 = "01n6k1q21i21451rdx3rgc4hhxghdn5b0ldzpjsp44ipgww5wsjk";
|
sha256 = "0hn043jjb7qh040dgyhffp9jrrmca1xxbc998vyqyg83lrq2j09b";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--disable-manualupdatecheck"
|
"--disable-manualupdatecheck"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ dbus gnutls2 wxGTK28 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite ];
|
buildInputs = [
|
||||||
|
dbus gnutls2 wxGTK28 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://filezilla-project.org/";
|
homepage = "http://filezilla-project.org/";
|
||||||
description = "Graphical FTP, FTPS and SFTP client";
|
description = "Graphical FTP, FTPS and SFTP client";
|
||||||
license = "GPLv2";
|
license = licenses.gpl2;
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
FileZilla Client is a free, open source FTP client. It supports
|
FileZilla Client is a free, open source FTP client. It supports
|
||||||
FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
|
FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
|
||||||
under many platforms, binaries for Windows, Linux and Mac OS X are
|
under many platforms, binaries for Windows, Linux and Mac OS X are
|
||||||
provided.
|
provided.
|
||||||
'';
|
'';
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user