2017-01-17 15:27:26 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, boost
|
|
|
|
, openssl, systemd, lua, luajit, protobuf
|
|
|
|
, enableProtoBuf ? false
|
|
|
|
}:
|
|
|
|
assert enableProtoBuf -> protobuf != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pdns-recursor";
|
2020-08-06 18:20:21 -07:00
|
|
|
version = "4.3.3";
|
2017-01-17 15:27:26 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
|
2020-08-06 18:20:21 -07:00
|
|
|
sha256 = "020mx8mh6zrixkhsc2p1c2ccl9zfypay988jjxbk6ql020flig0b";
|
2017-01-17 15:27:26 -08:00
|
|
|
};
|
|
|
|
|
2017-09-14 12:24:37 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-01-17 15:27:26 -08:00
|
|
|
buildInputs = [
|
2017-09-14 12:24:37 -07:00
|
|
|
boost openssl systemd
|
2018-01-28 15:57:05 -08:00
|
|
|
lua luajit
|
|
|
|
] ++ optional enableProtoBuf protobuf;
|
2017-01-17 15:27:26 -08:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-reproducible"
|
|
|
|
"--with-systemd"
|
|
|
|
];
|
|
|
|
|
2017-11-05 09:16:36 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-17 15:27:26 -08:00
|
|
|
meta = {
|
|
|
|
description = "A recursive DNS server";
|
2020-03-08 18:24:14 -07:00
|
|
|
homepage = "https://www.powerdns.com/";
|
2017-01-17 15:27:26 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
};
|
|
|
|
}
|