summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorChristoph Hrdinka <c.github@hrdinka.at>2016-04-16 16:13:51 +0200
committerChristoph Hrdinka <c.github@hrdinka.at>2016-05-02 16:46:46 +0200
commit199c998bcc7d5e64a9b8e30a964c2fac31e12848 (patch)
tree3d61701e09fb37b05c8b0cc99ddf9ffe63fa8e4a /pkgs
parent8a1ccb5f7093702afd6ed135539222683bc4d09d (diff)
downloadnixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar.gz
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar.bz2
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar.lz
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar.xz
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.tar.zst
nixlib-199c998bcc7d5e64a9b8e30a964c2fac31e12848.zip
nsd: 4.1.7 -> 4.1.9
Features
========

* Fix #732: tcp-mss, outgoing-tcp-mss options for nsd.conf, patch from Daisuke Higashi.
* Fix #739: zonefile changes when mtime is small are detected on reload, if filesystem supports precision mtime values.
* RR type CSYNC (RFC7477) syntax is supported.

Bugfixes
========

* Change the nsd.db file version because of nanosecond precision fix.
* take advantage of arc4random_uniform if available, patch from Loganaden Velvindron.
* Fix flto check for OSX clang.
* Define _DEFAULT_SOURCE with _BSD_SOURCE for glibc 2.20 on Linux.
* Fix #736: segfault during zone transfer.
* Fix #744: Fix that NSD replies for configured but unloaded zone with SERVFAIL, not REFUSED.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/dns/nsd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix
index 646e50c78f95..48dd535382da 100644
--- a/pkgs/servers/dns/nsd/default.nix
+++ b/pkgs/servers/dns/nsd/default.nix
@@ -13,11 +13,11 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "nsd-4.1.7";
+  name = "nsd-4.1.9";
 
   src = fetchurl {
     url = "http://www.nlnetlabs.nl/downloads/nsd/${name}.tar.gz";
-    sha256 = "12hskfgfbkvcgpa1xxkqd8lnc6xvln1amn97x6avfnj9kfrbxa3v";
+    sha256 = "1wn8jm5kpp81m88c77j97850mnmd87yaw8qp3xsdwcakcd6j44dq";
   };
 
   buildInputs = [ libevent openssl ];