summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/ICU/default.nix
blob: 761ff3ea9252cd542ab708721c95d37b84980a3c (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
{ appleDerivation }:

appleDerivation {
  patches = [ ./clang-5.patch ];

  postPatch = ''
    substituteInPlace makefile \
      --replace /usr/bin/ "" \
      --replace '$(ISYSROOT)' "" \
      --replace 'shell xcodebuild -version -sdk' 'shell true' \
      --replace 'shell xcrun -sdk $(SDKPATH) -find' 'shell echo' \
      --replace '-install_name $(libdir)' "-install_name $out/lib/" \
      --replace /usr/local/bin/ /bin/ \
      --replace /usr/lib/ /lib/ \
  '';

  makeFlags = [ "DSTROOT=$(out)" ];

  postInstall = ''
    mv $out/usr/local/include $out/include
    rm -rf $out/usr
  '';
}