2021-01-19 07:50:56 +01:00
|
|
|
{ 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
|
2019-12-21 23:39:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01: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"
|
2019-12-21 23:39:00 +01:00
|
|
|
"--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;
|
|
|
|
|
2019-12-21 23:39:00 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-04-09 21:00:40 +02:00
|
|
|
description = "DNS Loadbalancer";
|
|
|
|
homepage = "https://dnsdist.org";
|
|
|
|
license = licenses.gpl2;
|
2020-11-02 01:35:47 +01:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-04-09 21:00:40 +02:00
|
|
|
};
|
|
|
|
}
|