mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
11 lines
180 B
Nix
11 lines
180 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp mDNSShared/dns_sd.h $out/include
|
|
'';
|
|
}
|