mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
14 lines
304 B
Nix
14 lines
304 B
Nix
{ stdenv, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include/dispatch $out/include/os
|
|
|
|
cp -r dispatch/*.h $out/include/dispatch
|
|
cp -r private/*.h $out/include/dispatch
|
|
cp -r os/object*.h $out/include/os
|
|
'';
|
|
}
|