nixpkgs/pkgs/servers/dns/pdns-recursor/default.nix

43 lines
968 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, boost, nixosTests
2017-01-17 23:27:26 +00:00
, openssl, systemd, lua, luajit, protobuf
, enableProtoBuf ? false
}:
assert enableProtoBuf -> protobuf != null;
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "pdns-recursor";
2020-10-29 07:34:13 +00:00
version = "4.4.0";
2017-01-17 23:27:26 +00:00
src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
2020-10-29 07:34:13 +00:00
sha256 = "12z59xf63iskid08c3y55h238ma2chgvcbks0zprag7i00p97g06";
2017-01-17 23:27:26 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2017-01-17 23:27:26 +00:00
buildInputs = [
boost openssl systemd
2018-01-28 23:57:05 +00:00
lua luajit
] ++ optional enableProtoBuf protobuf;
2017-01-17 23:27:26 +00:00
configureFlags = [
"--enable-reproducible"
"--enable-systemd"
2017-01-17 23:27:26 +00:00
];
enableParallelBuilding = true;
passthru.tests = {
nixos = nixosTests.pdns-recursor;
};
2017-01-17 23:27:26 +00:00
meta = {
description = "A recursive DNS server";
2020-03-09 01:24:14 +00:00
homepage = "https://www.powerdns.com/";
2017-01-17 23:27:26 +00:00
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}