biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / dns / pdns / default.nix
blobd4c664802aa3346597ce2f97a729cf43dd0354d8
1 { lib
2 , stdenv
3 , fetchurl
4 , pkg-config
5 , nixosTests
6 , boost
7 , yaml-cpp
8 , libsodium
9 , sqlite
10 , protobuf
11 , openssl
12 , systemd
13 , mariadb-connector-c
14 , postgresql
15 , lua
16 , openldap
17 , geoip
18 , curl
19 , unixODBC
20 , lmdb
21 , tinycdb
24 stdenv.mkDerivation (finalAttrs: {
25   pname = "pdns";
26   version = "4.9.0";
28   src = fetchurl {
29     url = "https://downloads.powerdns.com/releases/pdns-${finalAttrs.version}.tar.bz2";
30     hash = "sha256-/h1UM8iERu1w2TFgXG7Dd9qZg5xOFRuQtxqiEb1u6pI=";
31   };
32   # redact configure flags from version output to reduce closure size
33   patches = [ ./version.patch ];
35   nativeBuildInputs = [ pkg-config ];
36   buildInputs = [
37     boost
38     mariadb-connector-c
39     postgresql
40     lua
41     openldap
42     sqlite
43     protobuf
44     geoip
45     yaml-cpp
46     libsodium
47     curl
48     unixODBC
49     openssl
50     systemd
51     lmdb
52     tinycdb
53   ];
55   # Configure phase requires 64-bit time_t even on 32-bit platforms.
56   env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.hostPlatform.is32bit [
57     "-D_TIME_BITS=64"
58     "-D_FILE_OFFSET_BITS=64"
59   ]);
61   configureFlags = [
62     "--disable-silent-rules"
63     "--enable-dns-over-tls"
64     "--enable-unit-tests"
65     "--enable-reproducible"
66     "--enable-tools"
67     "--enable-ixfrdist"
68     "--enable-systemd"
69     "--with-libsodium"
70     "--with-sqlite3"
71     "--with-libcrypto=${openssl.dev}"
72     "sysconfdir=/etc/pdns"
73   ];
75   # nix destroy with-modules arguments, when using configureFlags
76   preConfigure = ''
77     configureFlagsArray+=(
78       "--with-modules="
79       "--with-dynmodules=bind geoip gmysql godbc gpgsql gsqlite3 ldap lmdb lua2 pipe remote tinydns"
80     )
81   '';
83   # We want the various utilities to look for the powerdns config in
84   # /etc/pdns, but to actually install the sample config file in
85   # $out
86   installFlags = [ "sysconfdir=$(out)/etc/pdns" ];
88   enableParallelBuilding = true;
89   doCheck = true;
91   passthru.tests = {
92     nixos = nixosTests.powerdns;
93   };
95   meta = with lib; {
96     description = "Authoritative DNS server";
97     homepage = "https://www.powerdns.com";
98     platforms = platforms.unix;
99     broken = stdenv.isDarwin;
100     license = licenses.gpl2;
101     maintainers = with maintainers; [ mic92 disassembler nickcao ];
102   };