core/pkgs/by-name/da/darwin/packages/apple-source-releases/removefile/default.nix
2024-05-13 11:34:52 -04:00

14 lines
224 B
Nix

{ appleDerivation', stdenvNoCC }:
appleDerivation' stdenvNoCC {
installPhase = ''
mkdir -p $out/include/
cp removefile.h checkint.h $out/include/
'';
appleHeaders = ''
checkint.h
removefile.h
'';
}