dnsmasq: 2.84 -> 2.85

Fixes CVE-2021-3448.
https://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014835.html
This commit is contained in:
Thomas Gerbet 2021-04-23 13:51:43 +02:00
parent d239bc3643
commit 380bb617c0

View file

@ -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 ];