mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
43 lines
1,016 B
Nix
43 lines
1,016 B
Nix
{ lib, stdenv, fetchurl, pkg-config, boost, nixosTests
|
|
, openssl, systemd, lua, luajit, protobuf
|
|
, enableProtoBuf ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pdns-recursor";
|
|
version = "4.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
|
|
sha256 = "0sl98ykk2bh0v2aw2hyak7wk9k3pbhvmfkb3i4a72jlsixm60p81";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
boost openssl systemd
|
|
lua luajit
|
|
] ++ lib.optional enableProtoBuf protobuf;
|
|
|
|
configureFlags = [
|
|
"--enable-reproducible"
|
|
"--enable-systemd"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) pdns-recursor ncdns;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A recursive DNS server";
|
|
homepage = "https://www.powerdns.com/";
|
|
platforms = platforms.linux;
|
|
badPlatforms = [
|
|
"i686-linux" # a 64-bit time_t is needed
|
|
];
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|