Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
83 lines
1.6 KiB
Nix
83 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
boost,
|
|
nixosTests,
|
|
openssl,
|
|
systemd,
|
|
lua,
|
|
luajit,
|
|
protobuf,
|
|
libsodium,
|
|
curl,
|
|
rustPlatform,
|
|
cargo,
|
|
rustc,
|
|
enableProtoBuf ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pdns-recursor";
|
|
version = "5.2.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.powerdns.com/releases/pdns-recursor-${finalAttrs.version}.tar.bz2";
|
|
hash = "sha256-qKZXp6vW6dI3zdJnU/fc9czVuMSKyBILCNK41XodhWo=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit (finalAttrs) src;
|
|
sourceRoot = "pdns-recursor-${finalAttrs.version}/settings/rust";
|
|
hash = "sha256-A3NX1zj9+9qCLTkfca3v8Rr8oc/zL/Ruknjl3g1aMG4=";
|
|
};
|
|
|
|
cargoRoot = "settings/rust";
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
rustc
|
|
rustPlatform.cargoSetupHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
openssl
|
|
systemd
|
|
lua
|
|
luajit
|
|
libsodium
|
|
curl
|
|
]
|
|
++ lib.optional enableProtoBuf protobuf;
|
|
|
|
configureFlags = [
|
|
"--enable-reproducible"
|
|
"--enable-systemd"
|
|
"--enable-dns-over-tls"
|
|
"--with-boost=${boost.dev}"
|
|
"sysconfdir=/etc/pdns-recursor"
|
|
];
|
|
|
|
installFlags = [ "sysconfdir=$(out)/etc/pdns-recursor" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) pdns-recursor ncdns;
|
|
};
|
|
|
|
meta = {
|
|
description = "Recursive DNS server";
|
|
homepage = "https://www.powerdns.com/";
|
|
platforms = lib.platforms.linux;
|
|
badPlatforms = [
|
|
"i686-linux" # a 64-bit time_t is needed
|
|
];
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ rnhmjoj ];
|
|
};
|
|
})
|