mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml }:
|
|
|
|
let version = "3.14.1"; in
|
|
stdenv.mkDerivation {
|
|
name = "filezilla-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
|
|
sha256 = "0v6lb7miy6jbnswii816na8818xqxlvs1vadnii21xfmrsv7225i";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-manualupdatecheck"
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
|
|
pugixml ];
|
|
|
|
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 ];
|
|
};
|
|
}
|