a3bb8d7922
GitOrigin-RevId: 439b1605227b8adb1357b55ce8529d541abbe9eb
17 lines
326 B
Nix
17 lines
326 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.apsl20;
|
|
};
|
|
}
|