nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix
Domen Kožar e211504db6
Get rid of some usages of osx_private_sdk
For example this reduces haskell closure on
darwin for some packages for almost 500MB.
2017-07-09 22:48:04 +02:00

18 lines
336 B
Nix

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