3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix

31 lines
968 B
Nix
Raw Normal View History

{ stdenv, fetchurl, dbus, gnutls2, wxGTK28, libidn, tinyxml, gettext, pkgconfig, xdg_utils, gtk2, sqlite }:
2012-12-31 10:59:08 +00:00
let version = "3.6.0.2"; in
stdenv.mkDerivation {
name = "filezilla-${version}";
2013-04-26 21:40:40 +01:00
2012-12-31 10:59:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
sha256 = "01n6k1q21i21451rdx3rgc4hhxghdn5b0ldzpjsp44ipgww5wsjk";
};
2013-04-26 21:40:40 +01:00
2012-12-31 10:59:08 +00:00
configureFlags = [
"--disable-manualupdatecheck"
];
buildInputs = [ dbus gnutls2 wxGTK28 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite ];
2012-12-31 10:59:08 +00:00
meta = {
homepage = "http://filezilla-project.org/";
description = "Graphical FTP, FTPS and SFTP client";
2012-12-31 10:59:08 +00:00
license = "GPLv2";
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.
'';
2012-12-31 10:59:08 +00:00
};
}