forked from mirrors/nixpkgs
pdnsd: fix darwin build
This commit is contained in:
parent
ac0021ce53
commit
f9f31ff83e
|
@ -14,11 +14,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [ "--enable-ipv6" ];
|
configureFlags = [ "--enable-ipv6" ];
|
||||||
|
|
||||||
meta = {
|
# fix ipv6 on darwin
|
||||||
|
CPPFLAGS = "-D__APPLE_USE_RFC_3542";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Permanent DNS caching";
|
description = "Permanent DNS caching";
|
||||||
homepage = http://www.phys.uu.nl/~rombouts/pdnsd.html;
|
homepage = http://members.home.nl/p.a.rombouts/pdnsd;
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
maintainers = with maintainers; [viric];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue