summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/libutil/default.nix
blob: a6f484ba4e8d0aded5442ab21ec28ff0e3445b22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, appleDerivation }:

# all symbols are located in libSystem
appleDerivation {
  installPhase = ''
    mkdir -p $out/include
    cp *.h $out/include
  '';

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