nixpkgs/pkgs/os-specific/darwin/apple-source-releases/removefile/default.nix
2021-01-30 21:37:44 +08:00

14 lines
199 B
Nix

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