core/pkgs/by-name/da/darwin/packages/apple-source-releases/libmalloc/default.nix
2024-05-13 11:34:52 -04:00

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/
'';
}