a01a5ed925
Fixes #20977 since this was the same sha as the linux package nix just used that instead.
17 lines
359 B
Nix
17 lines
359 B
Nix
{ stdenv, appleDerivation, dyld, osx_private_sdk }:
|
|
|
|
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;
|
|
};
|
|
}
|