about summary refs log tree commit diff
path: root/pkgs/servers/squid
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-05-12 14:00:13 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-05-12 14:00:13 +0200
commit4b66107509daee791f7675d7866322d770a1aca9 (patch)
treea14124c60a383c8b0af988975d35f01646bfaee5 /pkgs/servers/squid
parent8a0c5da648702f4620e3a2926f48b38dd1d86562 (diff)
squid: 4.14 -> 4.15
Fixes CVE-2021-28116, CVE-2021-31806, CVE-2021-31807, CVE-2021-31808,
CVE-2021-28652, CVE-2021-28662 and CVE-2021-28651.

https://github.com/squid-cache/squid/security/advisories/GHSA-pxwq-f3qr-w2xf
https://github.com/squid-cache/squid/security/advisories/GHSA-m47m-9hvw-7447
https://github.com/squid-cache/squid/security/advisories/GHSA-jjq6-mh2h-g39h
https://github.com/squid-cache/squid/security/advisories/GHSA-572g-rvwr-6c7f
https://github.com/squid-cache/squid/security/advisories/GHSA-ch36-9jhx-phm4
Diffstat (limited to 'pkgs/servers/squid')
-rw-r--r--pkgs/servers/squid/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix
index 5c980f7e401be..dd3405d353127 100644
--- a/pkgs/servers/squid/default.nix
+++ b/pkgs/servers/squid/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   pname = "squid";
-  version = "4.14";
+  version = "4.15";
 
   src = fetchurl {
     url = "http://www.squid-cache.org/Versions/v4/${pname}-${version}.tar.xz";
-    sha256 = "sha256-8Ql9qmQ0iXwVm8EAl4tRNHwDOQQWEIRdCvoSgVFyn/w=";
+    sha256 = "sha256-tpOk5asoEaioVPYN4KYq+786lSux0EeVLJrgEyH4SiU=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
     homepage = "http://www.squid-cache.org";
-    license = licenses.gpl2;
+    license = licenses.gpl2Plus;
     platforms = platforms.linux;
     maintainers = with maintainers; [ fpletz raskin ];
   };