mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
filezilla: enable strictDeps, fix xdg-utils (#509576)
This commit is contained in:
commit
78058c8132
1 changed files with 10 additions and 2 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue