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

appleDerivation {
  buildPhase = ":";

  # install headers only
  installPhase = ''
    mkdir -p $out/lib
    cp -R include $out/include
  '';

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