9 lines
114 B
Nix
9 lines
114 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r include $out/include
|
|
'';
|
|
}
|