Merge pull request #233597 from viraptor/filezilla-darwin

libfilezilla: fix darwin intel build
This commit is contained in:
Artturi
2023-08-05 17:56:50 +03:00
committed by GitHub
2 changed files with 6 additions and 2 deletions
@@ -24,6 +24,10 @@ stdenv.mkDerivation rec {
buildInputs = [ gettext gnutls nettle libxcrypt ]
++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
preBuild = lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11") ''
export MACOSX_DEPLOYMENT_TARGET=10.13 # for futimens()
'';
enableParallelBuilding = true;
meta = with lib; {
+2 -2
View File
@@ -22444,8 +22444,8 @@ with pkgs;
udev = systemdMinimal;
};
libfilezilla = callPackage ../development/libraries/libfilezilla {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
libfilezilla = darwin.apple_sdk_11_0.callPackage ../development/libraries/libfilezilla {
inherit (darwin.apple_sdk_11_0.frameworks) ApplicationServices;
};
libfishsound = callPackage ../development/libraries/libfishsound { };