filezilla: enable strictDeps, fix xdg-utils (#509576)

This commit is contained in:
Sandro
2026-05-31 00:09:07 +00:00
committed by GitHub
+10 -2
View File
@@ -35,12 +35,14 @@ stdenv.mkDerivation (finalAttrs: {
configureFlags = [
"--disable-manualupdatecheck"
"--disable-autoupdatecheck"
"--with-wx-prefix=${wxwidgets_3_2}"
];
nativeBuildInputs = [
autoreconfHook
pkg-config
wrapGAppsHook3
xdg-utils
];
buildInputs = [
@@ -55,13 +57,19 @@ stdenv.mkDerivation (finalAttrs: {
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";