nixpkgs-odroid-hc4/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
2025-12-20 09:59:59 +11:00

13 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
'';
}