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
2015-09-08 11:53:00 +00:00
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml }:
2012-12-31 10:59:08 +00:00
2015-10-28 14:53:29 +00:00
let version = "3.14.1"; in
2012-12-31 10:59:08 +00:00
stdenv.mkDerivation {
name = "filezilla-${version}";
2013-04-26 20:40:40 +00:00
2012-12-31 10:59:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
2015-10-28 14:53:29 +00:00
sha256 = "0v6lb7miy6jbnswii816na8818xqxlvs1vadnii21xfmrsv7225i";
2012-12-31 10:59:08 +00:00
};
2013-04-26 20:40:40 +00:00
2012-12-31 10:59:08 +00:00
configureFlags = [
"--disable-manualupdatecheck"
];
buildInputs = [
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
2015-09-08 11:53:00 +00:00
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 ];
2012-12-31 10:59:08 +00:00
};
}