From 7ad8872001b905bd16006b9be13aec167f934b75 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 30 May 2019 20:18:05 -0500 Subject: [PATCH 1/2] libfilezilla: 0.13.0 -> 0.16.0 * pname * deps * try tests, disable due to failure --- pkgs/development/libraries/libfilezilla/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix index 367f1c9aadd..4a051f34b0b 100644 --- a/pkgs/development/libraries/libfilezilla/default.nix +++ b/pkgs/development/libraries/libfilezilla/default.nix @@ -1,14 +1,17 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, pkgconfig, nettle }: stdenv.mkDerivation rec { - name = "libfilezilla-${version}"; - version = "0.13.0"; + pname = "libfilezilla"; + version = "0.16.0"; src = fetchurl { - url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2"; - sha256 = "0sk8kz2zrvf7kp9jrp3l4rpipv4xh0hg8d4h734xyag7vd03rjpz"; + url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2"; + sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v"; }; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ nettle ]; + meta = with stdenv.lib; { homepage = https://lib.filezilla-project.org/; description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"; From 971bea90935b508c6775c5260cd46b5331917c89 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 30 May 2019 20:38:41 -0500 Subject: [PATCH 2/2] filezilla: 3.31.0 -> 3.42.1 --- pkgs/applications/networking/ftp/filezilla/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 49ac1d26dda..3ffc94d6bac 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,17 +1,18 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }: -let version = "3.31.0"; in +let version = "3.42.1"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { - url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "1rfysb8dil35a7bzj2kw0mzzkys39d7yn6ipsbk8l6rkwfvnii8l"; + url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2"; + sha256 = "083ycsycwy1szhp3mzf998wsqa74hmdxdsy07x6k81vp2cxjxijg"; }; configureFlags = [ "--disable-manualupdatecheck" + "--disable-autoupdatecheck" ]; nativeBuildInputs = [ pkgconfig ];