forked from mirrors/nixpkgs
9 lines
122 B
Nix
9 lines
122 B
Nix
|
{ stdenv, appleDerivation }:
|
||
|
|
||
|
appleDerivation {
|
||
|
installPhase = ''
|
||
|
mkdir $out
|
||
|
cp -r include $out/include
|
||
|
'';
|
||
|
}
|