aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix19
1 files changed, 7 insertions, 12 deletions
diff --git a/nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix b/nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix
index 96a4227b36e..0cb0d17cc5a 100644
--- a/nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/nixpkgs/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -1,5 +1,6 @@
{ stdenv
, fetchurl
+, autoreconfHook
, dbus
, gettext
, gnutls
@@ -10,23 +11,17 @@
, pugixml
, sqlite
, tinyxml
-, wxGTK30
+, wxGTK30-gtk3
, xdg_utils
}:
-let
- # we can drop this when wxgtk is built with gtk3 by default
- # see: https://github.com/NixOS/nixpkgs/pull/73145
- wxgtk' = wxGTK30.override { compat26 = false; withGtk2 = false; };
-
-in
stdenv.mkDerivation rec {
pname = "filezilla";
- version = "3.48.1";
+ version = "3.50.0";
src = fetchurl {
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
- sha256 = "0pgg2gp4x5qmxwin2qhf6skw0z52y29p75g41kjyh1lhzxvxizxb";
+ sha256 = "sha256-4NuHJpylIIqtFKAkFTN7T57+PEnC1NFOZukhx4oTXBA=";
};
# https://www.linuxquestions.org/questions/slackware-14/trouble-building-filezilla-3-47-2-1-current-4175671182/#post6099769
@@ -40,7 +35,7 @@ stdenv.mkDerivation rec {
"--disable-autoupdatecheck"
];
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [
dbus
@@ -52,8 +47,8 @@ stdenv.mkDerivation rec {
pugixml
sqlite
tinyxml
- wxgtk'
- wxgtk'.gtk
+ wxGTK30-gtk3
+ wxGTK30-gtk3.gtk
xdg_utils
];