587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
17 lines
331 B
Nix
17 lines
331 B
Nix
{ lib, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
dontBuild = true;
|
|
|
|
# install headers only
|
|
installPhase = ''
|
|
mkdir -p $out/lib
|
|
cp -R include $out/include
|
|
'';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ copumpkin lnl7 ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apple-psl20;
|
|
};
|
|
}
|