summary refs log tree commit diff
path: root/pkgs/tools/networking/haproxy
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-04 12:57:45 -0800
committerobadz <obadz-git@obadz.com>2018-03-05 00:00:18 +0000
commitf03c5eb88a4f180b05d34ba18a3b2d58e71c7383 (patch)
treebda15951af1fbcf888d4b9a5dfee1c82a8a599e9 /pkgs/tools/networking/haproxy
parent6b9a99e55d537c27c5b384d58c997839a0519df9 (diff)
downloadnixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar.gz
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar.bz2
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar.lz
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar.xz
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.tar.zst
nixpkgs-f03c5eb88a4f180b05d34ba18a3b2d58e71c7383.zip
haproxy: 1.7.9 -> 1.8.4
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/vh158gs5y12g1rdd1dhbd1ng2mz1761s-haproxy-1.8.4/bin/haproxy -v` and found version 1.8.4
- found 1.8.4 with grep in /nix/store/vh158gs5y12g1rdd1dhbd1ng2mz1761s-haproxy-1.8.4
- found 1.8.4 in filename of file in /nix/store/vh158gs5y12g1rdd1dhbd1ng2mz1761s-haproxy-1.8.4
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 d31d560e868..598557380e2 100644
--- a/pkgs/tools/networking/haproxy/default.nix
+++ b/pkgs/tools/networking/haproxy/default.nix
@@ -9,12 +9,12 @@ assert usePcre -> pcre != null;
 
 stdenv.mkDerivation rec {
   pname = "haproxy";
-  version = "1.7.9";
+  version = "1.8.4";
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${name}.tar.gz";
-    sha256 = "1072337e54fa188dc6e0cfe3ba4c2200b07082e321cbfe5a0882d85d54db068e";
+    sha256 = "19l4i0p92ahm3vaw42gz3rmmidfivk36mvqyhir81h6ywyjb01g3";
   };
 
   buildInputs = [ openssl zlib ]