about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/darwin/apple-source-releases/mDNSResponder/default.nix
blob: 0ba4caee6289a9cdfc746676c4608175e53d6d1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ appleDerivation', stdenvNoCC }:

appleDerivation' stdenvNoCC {
  dontBuild = true;
  installPhase = ''
    mkdir -p $out/include
    # TODO: Do this only for 765.50.9 once there is a way to apply version-specific
    # logic in a source-release derivation.
    substitute mDNSShared/dns_sd.h $out/include/dns_sd.h \
      --replace '#define _DNS_SD_LIBDISPATCH 0' '#define _DNS_SD_LIBDISPATCH 1'
  '';
}