fpc: fix darwin build (#359218)

This commit is contained in:
7c6f434c 2024-11-27 05:48:19 +00:00 committed by GitHub
commit 43e88080cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, gawk, fetchpatch, undmg, cpio, xar, darwin, libiconv }:
{ lib, stdenv, fetchurl, gawk, fetchpatch, undmg, cpio, xar, libiconv }:
let startFPC = import ./binary.nix { inherit stdenv fetchurl undmg cpio xar lib; }; in
@ -11,11 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "85ef993043bb83f999e2212f1bca766eb71f6f973d362e2290475dbaaf50161f";
};
buildInputs = [ startFPC gawk ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
darwin.apple_sdk.frameworks.CoreFoundation
];
buildInputs = [ startFPC gawk ];
glibc = stdenv.cc.libc.out;
@ -46,8 +42,9 @@ stdenv.mkDerivation rec {
--replace "-no_uuid" ""
'';
NIX_LDFLAGS = lib.optionalString
stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; "-F${CoreFoundation}/Library/Frameworks");
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
NIX_LDFLAGS="-syslibroot $SDKROOT -L${lib.getLib libiconv}/lib"
'';
makeFlags = [ "NOGDB=1" "FPC=${startFPC}/bin/fpc" ];