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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, boost, nixosTests
2017-01-17 23:27:26 +00:00
, openssl, systemd, lua, luajit, protobuf
, libsodium
, curl
, rustPlatform, cargo, rustc
2017-01-17 23:27:26 +00:00
, enableProtoBuf ? false
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pdns-recursor";
version = "5.0.2";
2017-01-17 23:27:26 +00:00
src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${finalAttrs.version}.tar.bz2";
hash = "sha256-qQ6LYf3BgbWWFEw1kgEYynHDuV9GZYzOfoIidQ3kXKk=";
2017-01-17 23:27:26 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit (finalAttrs) src;
sourceRoot = "pdns-recursor-${finalAttrs.version}/settings/rust";
hash = "sha256-XHzuYkO91TJNU2DYqMlafqrc2zR1WvIrNLjFHL2FcwA=";
};
cargoRoot = "settings/rust";
nativeBuildInputs = [
cargo
rustc
rustPlatform.cargoSetupHook
pkg-config
];
2017-01-17 23:27:26 +00:00
buildInputs = [
boost openssl systemd
2018-01-28 23:57:05 +00:00
lua luajit
libsodium
curl
2021-03-05 02:47:13 +00:00
] ++ lib.optional enableProtoBuf protobuf;
2017-01-17 23:27:26 +00:00
configureFlags = [
"--enable-reproducible"
"--enable-systemd"
"--enable-dns-over-tls"
"sysconfdir=/etc/pdns-recursor"
2017-01-17 23:27:26 +00:00
];
installFlags = [ "sysconfdir=$(out)/etc/pdns-recursor" ];
enableParallelBuilding = true;
passthru.tests = {
2021-05-20 21:23:31 +00:00
inherit (nixosTests) pdns-recursor ncdns;
};
2021-03-05 02:47:13 +00:00
meta = with lib; {
2017-01-17 23:27:26 +00:00
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;
badPlatforms = [
"i686-linux" # a 64-bit time_t is needed
];
2021-06-13 09:03:16 +00:00
license = licenses.gpl2Only;
2017-01-17 23:27:26 +00:00
maintainers = with maintainers; [ rnhmjoj ];
};
})