about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-05 19:28:08 -0500
committerGitHub <noreply@github.com>2020-03-05 19:28:08 -0500
commitd472a3275236a4773f3ac87ac7ee088b6789668d (patch)
treec1998465c93f68534ac5c8852cf1c4d0e4b616ea /pkgs/tools/networking
parent6e103b062e9e5fa41c9c6f41ef5624d5c0a0c210 (diff)
parente08b7fff16b9d11c6e3647dfb5474723b4a7e5b7 (diff)
downloadnixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar.gz
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar.bz2
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar.lz
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar.xz
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.tar.zst
nixlib-d472a3275236a4773f3ac87ac7ee088b6789668d.zip
Merge pull request #81798 from r-ryantm/auto-update/haproxy
haproxy: 2.1.2 -> 2.1.3
Diffstat (limited to 'pkgs/tools/networking')
-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 a1e87e3153b0..9c7adfce21da 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.1.2";
+  version = "2.1.3";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
-    sha256 = "0xqb64nyl7hqnzpqb2jhv1ash47fcf4sspl3lalybb85i65b0yb0";
+    sha256 = "0n8bw3d6gikr8c56ycrvksp1sl0b4yfzp19867cxkl3l0daqwrxv";
   };
 
   buildInputs = [ openssl zlib ]