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