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

This commit is contained in:
Sandro 2026-05-31 00:09:07 +00:00 committed by GitHub
commit 78058c8132
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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";