mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 23:33:30 +00:00
9 lines
140 B
Nix
9 lines
140 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include/
|
|
cp removefile.h checkint.h $out/include/
|
|
'';
|
|
}
|