about summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Csu/default.nix
blob: 8cb478d0874cecefa526eafd38602960dfe4b85b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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)" ];
  enableParallelInstalling = false; # cp: cannot create regular file '$out/lib/crt1.10.6.o'

  meta = with lib; {
    description = "Apple's common startup stubs for darwin";
    maintainers = with maintainers; [ copumpkin ];
    platforms   = platforms.darwin;
    license     = licenses.apple-psl20;
  };
}