Merge pull request #23567 from LnL7/darwin-pdnsd

pdnsd: fix darwin build

authored by Daiderd Jordan and committed by GitHub f0f77af8 65b8a97a

+8 -5
+8 -5
pkgs/tools/networking/pdnsd/default.nix
··· 14 14 15 15 configureFlags = [ "--enable-ipv6" ]; 16 16 17 - meta = { 17 + # fix ipv6 on darwin 18 + CPPFLAGS = "-D__APPLE_USE_RFC_3542"; 19 + 20 + meta = with stdenv.lib; { 18 21 description = "Permanent DNS caching"; 19 - homepage = http://www.phys.uu.nl/~rombouts/pdnsd.html; 20 - license = stdenv.lib.licenses.gpl3Plus; 21 - platforms = stdenv.lib.platforms.unix; 22 - maintainers = with stdenv.lib.maintainers; [viric]; 22 + homepage = http://members.home.nl/p.a.rombouts/pdnsd; 23 + license = licenses.gpl3Plus; 24 + platforms = platforms.unix; 25 + maintainers = with maintainers; [viric]; 23 26 }; 24 27 }