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

35 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
2016-04-30 10:57:14 +03:00
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
2012-12-31 14:59:08 +04:00
2016-08-12 15:08:38 +03:00
let version = "3.20.1"; in
2012-12-31 14:59:08 +04:00
stdenv.mkDerivation {
name = "filezilla-${version}";
2013-04-27 00:40:40 +04:00
2012-12-31 14:59:08 +04:00
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
2016-08-12 15:08:38 +03:00
sha256 = "0bcy0j89y2mpjyzwnz1qa33412n7yl0g8px2r4v7gla25r2x5qwa";
2012-12-31 14:59:08 +04:00
};
2013-04-27 00:40:40 +04:00
2012-12-31 14:59:08 +04:00
configureFlags = [
"--disable-manualupdatecheck"
];
buildInputs = [
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
2016-04-30 10:57:14 +03:00
pugixml libfilezilla nettle ];
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ pSub ];
2012-12-31 14:59:08 +04:00
};
}