14 lines
199 B
Nix
14 lines
199 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include/
|
|
cp removefile.h checkint.h $out/include/
|
|
'';
|
|
|
|
appleHeaders = ''
|
|
checkint.h
|
|
removefile.h
|
|
'';
|
|
}
|