mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
9 lines
119 B
Nix
9 lines
119 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp *.h $out/include/
|
|
'';
|
|
}
|