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

49 lines
1.4 KiB
Nix
Raw Normal View History

2018-02-17 11:47:20 +00:00
{ stdenv, fetchurl, pkgconfig
, boost, libyamlcpp, libsodium, sqlite, protobuf, botan2, libressl
2018-02-17 11:47:20 +00:00
, mysql57, postgresql, lua, openldap, geoip, curl, opendbx, unixODBC
2016-09-17 21:30:27 +00:00
}:
stdenv.mkDerivation rec {
name = "powerdns-${version}";
version = "4.1.10";
2016-09-17 21:30:27 +00:00
src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-${version}.tar.bz2";
sha256 = "1iqmrg0dhf39gr2mq9d8r3s5c6yqkb5mm8grbbla5anajbgcyijs";
2016-09-17 21:30:27 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2018-02-17 11:47:20 +00:00
buildInputs = [
boost mysql57.connector-c postgresql lua openldap sqlite protobuf geoip
libyamlcpp libsodium curl opendbx unixODBC botan2 libressl
2018-02-17 11:47:20 +00:00
];
2016-09-17 21:30:27 +00:00
# nix destroy with-modules arguments, when using configureFlags
preConfigure = ''
configureFlagsArray=(
2018-02-17 11:47:20 +00:00
"--with-modules=bind gmysql geoip godbc gpgsql gsqlite3 ldap lua mydns opendbx pipe random remote"
2016-09-17 21:30:27 +00:00
--with-sqlite3
--with-socketdir=/var/lib/powerdns
--with-libcrypto=${libressl.dev}
2016-09-17 21:30:27 +00:00
--enable-libsodium
2018-02-17 11:47:20 +00:00
--enable-botan
2016-09-17 21:30:27 +00:00
--enable-tools
--disable-dependency-tracking
--disable-silent-rules
--enable-reproducible
--enable-unit-tests
)
'';
2018-02-17 11:47:20 +00:00
doCheck = true;
2016-09-17 21:30:27 +00:00
meta = with stdenv.lib; {
description = "Authoritative DNS server";
homepage = https://www.powerdns.com;
platforms = platforms.unix;
broken = stdenv.isDarwin;
2016-09-17 21:30:27 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 disassembler ];
2016-09-17 21:30:27 +00:00
};
}