7bba32a069
If things build fine with `stdenvNoCC`, let them use that. If tools might be prefixed, prepare for that, either by directly splicing or just using the env vars provided by the wrapper setup-hooks. Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
29 lines
827 B
Nix
29 lines
827 B
Nix
{ lib, appleDerivation', stdenv }:
|
|
|
|
appleDerivation' stdenv {
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/lib /lib \
|
|
--replace /usr/local/lib /lib \
|
|
--replace /usr/bin "" \
|
|
--replace /bin/ "" \
|
|
--replace "CC = " "#" \
|
|
--replace "SDK_DIR = " "SDK_DIR = . #" \
|
|
|
|
# Mac OS didn't support rpaths back before 10.5, but we don't care about it.
|
|
substituteInPlace Makefile \
|
|
--replace -mmacosx-version-min=10.4 -mmacosx-version-min=10.6 \
|
|
--replace -mmacosx-version-min=10.5 -mmacosx-version-min=10.6
|
|
'';
|
|
|
|
installFlags = [ "DSTROOT=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Apple's common startup stubs for darwin";
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apsl20;
|
|
};
|
|
}
|