about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libmalloc/default.nix
blob: 8b362a2edd549e971990f4134ebdac7e11a7f4a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ 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/
  '';
}