summary refs log blame commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix
blob: bd219ae434c047bfb56c46afa6ab642315c38a06 (plain) (tree)
1
2
3
4
5
6
7
8
9
                            

                 
                   
 
                        
                   

                              


                           
                                                       



                                   
{ 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;
  };
}