mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
11 lines
290 B
Nix
11 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/
|
|
'';
|
|
}
|