Merge pull request #132390 from vcunat/p/knot-dns-3.1

knot-dns: 3.0.8 -> 3.1.0

authored by Sandro and committed by GitHub 59dc4085 29013e99

+4 -3
+4 -3
pkgs/servers/dns/knot-dns/default.nix
··· 1 { lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring 2 - , systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2 3 , autoreconfHook, nixosTests 4 }: 5 ··· 7 8 stdenv.mkDerivation rec { 9 pname = "knot-dns"; 10 - version = "3.0.8"; 11 12 src = fetchurl { 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 - sha256 = "df723949c19ebecf9a7118894c3127e292eb09dc7274b5ce9b527409f42edfb0"; 15 }; 16 17 outputs = [ "bin" "out" "dev" ]; ··· 36 libiconv lmdb libintl 37 nghttp2 # DoH support in kdig 38 libmaxminddb # optional for geoip module (it's tiny) 39 # without sphinx &al. for developer documentation 40 # TODO: add dnstap support? 41 ]
··· 1 { lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring 2 + , systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2, libmnl 3 , autoreconfHook, nixosTests 4 }: 5 ··· 7 8 stdenv.mkDerivation rec { 9 pname = "knot-dns"; 10 + version = "3.1.0"; 11 12 src = fetchurl { 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 + sha256 = "54323712e3cbc3d4c70a15777818fd2ff0de30cebb6c22e2946372b15b2653ed"; 15 }; 16 17 outputs = [ "bin" "out" "dev" ]; ··· 36 libiconv lmdb libintl 37 nghttp2 # DoH support in kdig 38 libmaxminddb # optional for geoip module (it's tiny) 39 + libmnl # required for knot >= 3.1 40 # without sphinx &al. for developer documentation 41 # TODO: add dnstap support? 42 ]