36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
|
|
|
|
let version = "3.29.0"; in
|
|
stdenv.mkDerivation {
|
|
name = "filezilla-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
|
sha256 = "0najf2w6p5j4qc8jmglx6j63mph749s5p90lz2nkmwwwy5sfvlga";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-manualupdatecheck"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
|
|
pugixml libfilezilla nettle ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://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 macOS are
|
|
provided.
|
|
'';
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|