mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 00:14:43 +00:00
10 lines
147 B
Nix
10 lines
147 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/include/
|
|
cp copyfile.h $out/include/
|
|
'';
|
|
}
|