summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/libutil/default.nix
blob: e7c8a6b1113b2c6852c083a5b2c98137b6774cd7 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib, stdenv, stdenvNoCC, appleDerivation', xcbuildHook

# headersOnly is true when building for libSystem
, headersOnly ? false }:

appleDerivation' (if headersOnly then stdenvNoCC else stdenv) {
  nativeBuildInputs = lib.optional (!headersOnly) xcbuildHook;

  prePatch = ''
    substituteInPlace tzlink.c \
      --replace '#include <xpc/xpc.h>' ""
  '';

  xcbuildFlags = [ "-target" "util" ];

  installPhase = ''
    mkdir -p $out/include
  '' + lib.optionalString headersOnly ''
    cp *.h $out/include
  '' + lib.optionalString (!headersOnly)''
    mkdir -p $out/lib $out/include

    cp Products/Release/*.dylib $out/lib
    cp Products/Release/*.h $out/include

    # TODO: figure out how to get this to be right the first time around
    install_name_tool -id $out/lib/libutil.dylib $out/lib/libutil.dylib
  '';

  # FIXME: headers are different against headersOnly. And all the headers are NOT in macos, do we really want them?
  # appleHeaders = ''
  #   libutil.h
  #   mntopts.h
  #   tzlink.h
  #   wipefs.h
  # '';

  meta = with lib; {
    maintainers = with maintainers; [ copumpkin ];
    platforms   = platforms.darwin;
    license     = licenses.apsl20;
  };
}