nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, dbus, gnutls, wxGTK28, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite }:
2012-12-31 11:59:08 +01:00
let version = "3.7.3"; 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";
sha256 = "0hn043jjb7qh040dgyhffp9jrrmca1xxbc998vyqyg83lrq2j09b";
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"
];
buildInputs = [
dbus gnutls wxGTK28 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
];
meta = with stdenv.lib; {
2012-12-31 11:59:08 +01:00
homepage = "http://filezilla-project.org/";
description = "Graphical FTP, FTPS and SFTP client";
license = licenses.gpl2;
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.
'';
platforms = platforms.linux;
2012-12-31 11:59:08 +01:00
};
}