9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
10 lines
290 B
Nix
10 lines
290 B
Nix
{ appleDerivation', stdenvNoCC }:
|
|
|
|
# Unfortunately, buiding libmalloc is not feasible due to its use of non-public headers, but its
|
|
# headers are needed by Libsystem.
|
|
appleDerivation' stdenvNoCC {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp -R include/malloc $out/include/
|
|
'';
|
|
}
|