{ stdenv, fetchurl, pkgconfig, boost , openssl, systemd, lua, luajit, protobuf , enableProtoBuf ? false }: assert enableProtoBuf -> protobuf != null; with stdenv.lib; stdenv.mkDerivation rec { name = "pdns-recursor-${version}"; version = "4.1.3"; src = fetchurl { url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2"; sha256 = "12x8gm6771wh2xaqad3p5y08p5pimp6k9h830s0487mwg9glacy1"; }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ boost openssl systemd lua luajit ] ++ optional enableProtoBuf protobuf; configureFlags = [ "--enable-reproducible" "--with-systemd" ]; enableParallelBuilding = true; meta = { description = "A recursive DNS server"; homepage = https://www.powerdns.com/; platforms = platforms.linux; license = licenses.gpl2; maintainers = with maintainers; [ rnhmjoj ]; }; }