xcbuild: fix missing library for PlistBuddy

PlistBuddy requires liblinenoise.dylib, which is compiled from a third party
archive, but not installed
This commit is contained in:
Michael Roitzsch 2021-03-29 20:56:35 +02:00
parent a3fec5f8cd
commit 776241d186

View file

@ -51,6 +51,7 @@ in stdenv.mkDerivation {
postInstall = ''
mv $out/usr/* $out
rmdir $out/usr
cp liblinenoise.* $out/lib/
'';
NIX_CFLAGS_COMPILE = "-Wno-error";