3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix

18 lines
336 B
Nix
Raw Normal View History

{ stdenv, appleDerivation }:
appleDerivation {
buildPhase = ":";
# install headers only
installPhase = ''
2015-10-28 01:00:00 +00:00
mkdir -p $out/lib
cp -R include $out/include
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ copumpkin lnl7 ];
platforms = platforms.darwin;
license = licenses.apsl20;
};
}