bb5b50588c
GitOrigin-RevId: 9816b99e71c3504b0b4c1f8b2e004148460029d4
13 lines
178 B
Nix
13 lines
178 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp *.h $out/include/
|
|
'';
|
|
|
|
appleHeaders = ''
|
|
Block.h
|
|
Block_private.h
|
|
'';
|
|
}
|