Revert "darwin.libunwind: fix install phase"

This reverts commit 76125722f0.
This commit is contained in:
Daiderd Jordan 2016-12-15 00:37:19 +01:00
parent 2a224c6795
commit 14bf940610
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

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