summary refs log tree commit diff
path: root/pkgs/tools/networking/dnsmasq
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-04-23 13:51:43 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-04-24 09:52:50 +0200
commit380bb617c06c862234e18bd5ca881e0fd2b6536d (patch)
tree047e7cc1f510ebecfbce35d8f2f0ec319dc28bec /pkgs/tools/networking/dnsmasq
parentd239bc36439f4f1457c5c70ad59f8a737989d79a (diff)
downloadnixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar.gz
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar.bz2
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar.lz
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar.xz
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.tar.zst
nixpkgs-380bb617c06c862234e18bd5ca881e0fd2b6536d.zip
dnsmasq: 2.84 -> 2.85
Fixes CVE-2021-3448.
https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014835.html
Diffstat (limited to 'pkgs/tools/networking/dnsmasq')
-rw-r--r--pkgs/tools/networking/dnsmasq/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/dnsmasq/default.nix b/pkgs/tools/networking/dnsmasq/default.nix
index a9e4b1390a1..131a645d838 100644
--- a/pkgs/tools/networking/dnsmasq/default.nix
+++ b/pkgs/tools/networking/dnsmasq/default.nix
@@ -13,11 +13,11 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "dnsmasq";
-  version = "2.84";
+  version = "2.85";
 
   src = fetchurl {
-    url = "http://www.thekelleys.org.uk/dnsmasq/${pname}-${version}.tar.xz";
-    sha256 = "sha256-YDGVxktzE3YJsH4QJK4LN/ZSsvX+Rn3OZphbPRhQBQw=";
+    url = "https://www.thekelleys.org.uk/dnsmasq/${pname}-${version}.tar.xz";
+    sha256 = "sha256-rZjTgD32h+W5OAgPPSXGKP5ByHh1LQP7xhmXh/7jEvo=";
   };
 
   postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "An integrated DNS, DHCP and TFTP server for small networks";
-    homepage = "http://www.thekelleys.org.uk/dnsmasq/doc.html";
+    homepage = "https://www.thekelleys.org.uk/dnsmasq/doc.html";
     license = licenses.gpl2;
     platforms = with platforms; linux ++ darwin;
     maintainers = with maintainers; [ eelco fpletz globin ];