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

36 lines
950 B
Nix
Raw Normal View History

2018-04-09 19:00:40 +00:00
{ stdenv, fetchurl, pkgconfig, systemd
, boost, libsodium, libedit, re2
, net_snmp, lua, protobuf, openssl }: stdenv.mkDerivation rec {
name = "dnsdist-${version}";
version = "1.3.2";
2018-04-09 19:00:40 +00:00
src = fetchurl {
url = "https://downloads.powerdns.com/releases/dnsdist-${version}.tar.bz2";
sha256 = "1i3b1vpk9a8zbx9aby2s1ckkzhlvzgn11hcgj3b8x2j1b9771rqb";
2018-04-09 19:00:40 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ systemd boost libsodium libedit re2 net_snmp lua protobuf openssl ];
configureFlags = [
"--enable-libsodium"
"--enable-re2"
"--enable-dnscrypt"
"--enable-dns-over-tls"
"--with-protobuf=yes"
"--with-net-snmp"
"--disable-dependency-tracking"
"--enable-unit-tests"
"--enable-systemd"
];
doCheck = true;
meta = with stdenv.lib; {
description = "DNS Loadbalancer";
homepage = "https://dnsdist.org";
license = licenses.gpl2;
maintainers = with maintainers; [ das_j ];
2018-04-09 19:00:40 +00:00
};
}