2020-10-10 12:58:03 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, nixosTests
|
2020-10-09 01:14:11 +01:00
|
|
|
, boost, libyamlcpp, libsodium, sqlite, protobuf, openssl, systemd
|
2020-10-15 01:01:42 +01:00
|
|
|
, mysql57, postgresql, lua, openldap, geoip, curl, unixODBC
|
2016-09-17 22:30:27 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "powerdns";
|
2020-10-15 01:01:42 +01:00
|
|
|
version = "4.3.1";
|
2016-09-17 22:30:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://downloads.powerdns.com/releases/pdns-${version}.tar.bz2";
|
2020-10-15 01:01:42 +01:00
|
|
|
sha256 = "0if27znz528sir52y9i4gcfhdsym7yxiwjgffy9lpscf1426q56m";
|
2016-09-17 22:30:27 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-17 11:47:20 +00:00
|
|
|
buildInputs = [
|
|
|
|
boost mysql57.connector-c postgresql lua openldap sqlite protobuf geoip
|
2020-10-15 01:01:42 +01:00
|
|
|
libyamlcpp libsodium curl unixODBC openssl systemd
|
2018-02-17 11:47:20 +00:00
|
|
|
];
|
2016-09-17 22:30:27 +01:00
|
|
|
|
|
|
|
# nix destroy with-modules arguments, when using configureFlags
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
2020-10-15 01:01:42 +01:00
|
|
|
"--with-modules=bind gmysql geoip godbc gpgsql gsqlite3 ldap lua2 pipe random remote"
|
2016-09-17 22:30:27 +01:00
|
|
|
--with-sqlite3
|
2019-09-08 08:09:29 +01:00
|
|
|
--with-libcrypto=${openssl.dev}
|
2020-10-09 00:53:48 +01:00
|
|
|
--with-libsodium
|
2016-09-17 22:30:27 +01:00
|
|
|
--enable-tools
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--disable-silent-rules
|
|
|
|
--enable-reproducible
|
|
|
|
--enable-unit-tests
|
2020-10-09 01:14:11 +01:00
|
|
|
--enable-systemd
|
2016-09-17 22:30:27 +01:00
|
|
|
)
|
|
|
|
'';
|
2018-02-17 11:47:20 +00:00
|
|
|
|
2019-07-13 10:34:17 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-02-17 11:47:20 +00:00
|
|
|
doCheck = true;
|
2016-09-17 22:30:27 +01:00
|
|
|
|
2020-10-10 12:58:03 +01:00
|
|
|
passthru.tests = {
|
|
|
|
nixos = nixosTests.powerdns;
|
|
|
|
};
|
|
|
|
|
2016-09-17 22:30:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Authoritative DNS server";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.powerdns.com";
|
2019-07-04 01:25:32 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
broken = stdenv.isDarwin;
|
2016-09-17 22:30:27 +01:00
|
|
|
license = licenses.gpl2;
|
2018-03-18 00:30:44 +00:00
|
|
|
maintainers = with maintainers; [ mic92 disassembler ];
|
2016-09-17 22:30:27 +01:00
|
|
|
};
|
|
|
|
}
|