summary refs log tree commit diff
path: root/pkgs/tools/networking/haproxy
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-09-19 13:00:16 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-09-19 13:00:16 +0200
commit0bdde7ecdf02f55d71792069c401fa270cf3e58c (patch)
tree857f168753cc9958b7d92145d7ffa28852e6b93e /pkgs/tools/networking/haproxy
parentcf5f9be60d0fa143ef6bd12f4d9e2cb805bf4905 (diff)
downloadnixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar.gz
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar.bz2
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar.lz
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar.xz
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.tar.zst
nixpkgs-0bdde7ecdf02f55d71792069c401fa270cf3e58c.zip
haproxy: 2.3.13 -> 2.3.14
Fixes CVE-2021-40346.
Diffstat (limited to 'pkgs/tools/networking/haproxy')
-rw-r--r--pkgs/tools/networking/haproxy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/haproxy/default.nix b/pkgs/tools/networking/haproxy/default.nix
index 32fa2af818b..529339e3465 100644
--- a/pkgs/tools/networking/haproxy/default.nix
+++ b/pkgs/tools/networking/haproxy/default.nix
@@ -11,11 +11,11 @@ assert usePcre -> pcre != null;
 
 stdenv.mkDerivation rec {
   pname = "haproxy";
-  version = "2.3.13";
+  version = "2.3.14";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
-    sha256 = "0mz2vga8wwhqa8n4psphbqfd5q33n4m8ar7ac9chhn0i397s8lf6";
+    sha256 = "0ah6xsxlk1a7jsxdg0pbdhzhssz9ysrfxd3bs5hm1shql1jmqzh4";
   };
 
   buildInputs = [ openssl zlib ]