darwin.libunwind: fix install phase

This commit is contained in:
Daiderd Jordan 2016-12-08 21:12:27 +01:00
parent ece67bfa01
commit 76125722f0
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -1,15 +1,16 @@
{ stdenv, appleDerivation, dyld, osx_private_sdk }:
appleDerivation {
phases = [ "unpackPhase" "installPhase" ];
buildPhase = ":";
# install headers only
installPhase = ''
mkdir -p $out/lib
cp -R include $out/include
make install-data-am
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ copumpkin ];
maintainers = with maintainers; [ copumpkin lnl7 ];
platforms = platforms.darwin;
license = licenses.apsl20;
};