nixpkgs/pkgs/servers/dns/dnsdist/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, systemd
2018-04-09 21:00:40 +02:00
, boost, libsodium, libedit, re2
2019-12-21 23:44:50 +01:00
, net-snmp, lua, protobuf, openssl, zlib, h2o
}:
stdenv.mkDerivation rec {
pname = "dnsdist";
2020-10-24 20:33:26 +02:00
version = "1.5.1";
2018-04-09 21:00:40 +02:00
src = fetchurl {
url = "https://downloads.powerdns.com/releases/dnsdist-${version}.tar.bz2";
2020-10-24 20:33:26 +02:00
sha256 = "1wgv19b6y4fp5x1z54psaaialji2rckl5vdh156kyw47k9r5krya";
2018-04-09 21:00:40 +02:00
};
nativeBuildInputs = [ pkg-config protobuf ];
2019-12-21 23:44:50 +01:00
buildInputs = [ systemd boost libsodium libedit re2 net-snmp lua openssl zlib h2o ];
2018-04-09 21:00:40 +02:00
configureFlags = [
2020-10-11 17:02:55 +02:00
"--with-libsodium"
"--with-re2"
2018-04-09 21:00:40 +02:00
"--enable-dnscrypt"
"--enable-dns-over-tls"
"--enable-dns-over-https"
2018-04-09 21:00:40 +02:00
"--with-protobuf=yes"
"--with-net-snmp"
"--disable-dependency-tracking"
"--enable-unit-tests"
"--enable-systemd"
];
doCheck = true;
enableParallelBuilding = true;
meta = with lib; {
2018-04-09 21:00:40 +02:00
description = "DNS Loadbalancer";
homepage = "https://dnsdist.org";
license = licenses.gpl2;
maintainers = with maintainers; [ SuperSandro2000 ];
2018-04-09 21:00:40 +02:00
};
}