mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 01:23:03 +00:00
62fd669ab7
I think I need postPatch for `autoreconfHook`, it's better anyways, and I'm pairing this with another mass-rebuild so its essentially free.
23 lines
897 B
Nix
23 lines
897 B
Nix
{ stdenv, appleDerivation, autoreconfHook }:
|
|
|
|
appleDerivation {
|
|
postUnpack = "sourceRoot=$sourceRoot/libiconv";
|
|
|
|
postInstall = ''
|
|
mv $out/lib/libiconv.dylib $out/lib/libiconv-nocharset.dylib
|
|
${stdenv.cc.bintools.targetPrefix}install_name_tool -id $out/lib/libiconv-nocharset.dylib $out/lib/libiconv-nocharset.dylib
|
|
|
|
# re-export one useless symbol; ld will reject a dylib that only reexports other dylibs
|
|
echo 'void dont_use_this(){}' | ${stdenv.cc.bintools.targetPrefix}clang -dynamiclib -x c - -current_version 2.4.0 \
|
|
-compatibility_version 7.0.0 -current_version 7.0.0 -o $out/lib/libiconv.dylib \
|
|
-Wl,-reexport_library -Wl,$out/lib/libiconv-nocharset.dylib \
|
|
-Wl,-reexport_library -Wl,$out/lib/libcharset.dylib
|
|
'';
|
|
|
|
setup-hook = ../../../../development/libraries/libiconv/setup-hook.sh;
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|