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

65 lines
1.2 KiB
Nix
Raw Normal View History

2019-07-11 10:28:02 +02:00
{ stdenv
, fetchurl
2012-12-31 11:59:08 +01:00
2019-07-11 10:28:02 +02:00
, dbus
, gettext
, gnutls
, gtk2
, libfilezilla
, libidn
, nettle
, pkgconfig
, pugixml
, sqlite
, tinyxml
, wxGTK30
, xdg_utils
}:
stdenv.mkDerivation rec {
pname = "filezilla";
2020-01-06 12:48:57 +01:00
version = "3.46.3";
2013-04-26 22:40:40 +02:00
2012-12-31 11:59:08 +01:00
src = fetchurl {
2019-05-31 03:38:41 +02:00
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
2020-01-06 12:48:57 +01:00
sha256 = "15bkg9qs07h4pzkxba1gymp8f264dk0zrzd9brx48fcwm7qbzigi";
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"
2019-05-31 03:38:41 +02:00
"--disable-autoupdatecheck"
2012-12-31 11:59:08 +01:00
];
2016-11-19 22:14:29 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
2019-07-11 10:28:02 +02:00
dbus
gettext
gnutls
gtk2
libfilezilla
libidn
nettle
pugixml
sqlite
tinyxml
wxGTK30
xdg_utils
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
2019-07-11 10:28:02 +02:00
homepage = "https://filezilla-project.org/";
description = "Graphical FTP, FTPS and SFTP client";
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 macOS are
provided.
'';
2019-07-11 10:28:02 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
2012-12-31 11:59:08 +01:00
};
}