From 214e752eb0f135ada16134bfc49c4ed9e02f0cce Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 13 Apr 2026 15:37:40 +0200 Subject: [PATCH] filezilla: enable strictDeps, fix xdg-utils xdg-utils should be on the PATH at runtime --- pkgs/by-name/fi/filezilla/package.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fi/filezilla/package.nix b/pkgs/by-name/fi/filezilla/package.nix index b83886dcdbab..ba6c22929f61 100644 --- a/pkgs/by-name/fi/filezilla/package.nix +++ b/pkgs/by-name/fi/filezilla/package.nix @@ -33,12 +33,14 @@ stdenv.mkDerivation { configureFlags = [ "--disable-manualupdatecheck" "--disable-autoupdatecheck" + "--with-wx-prefix=${wxwidgets_3_2}" ]; nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook3 + xdg-utils ]; buildInputs = [ @@ -52,13 +54,19 @@ stdenv.mkDerivation { pugixml sqlite tinyxml - wxwidgets_3_2 gtk3 - xdg-utils ]; + strictDeps = true; + enableParallelBuilding = true; + preFixup = '' + gappsWrapperArgs+=( + --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" + ) + ''; + meta = { homepage = "https://filezilla-project.org/"; description = "Graphical FTP, FTPS and SFTP client";