Merge pull request #103713 from r-ryantm/auto-update/haproxy

haproxy: 2.2.4 -> 2.3.0
This commit is contained in:
Mario Rodas 2020-11-14 06:42:33 -05:00 committed by GitHub
commit 45b54c4db4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ useLua ? !stdenv.isDarwin
, usePcre ? true
, withPrometheusExporter ? true
, stdenv, lib, fetchurl
, stdenv, lib, fetchurl, nixosTests
, openssl, zlib
, lua5_3 ? null, pcre ? null, systemd ? null
}:
@ -11,11 +11,11 @@ assert usePcre -> pcre != null;
stdenv.mkDerivation rec {
pname = "haproxy";
version = "2.2.4";
version = "2.3.0";
src = fetchurl {
url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
sha256 = "1qhvaixns0xgxgd095kvqid0pi6jxsld9ghvnr60khwdzzadk947";
sha256 = "1z3qzwm2brpi36kxhvw2xvm1ld9yz9c373rcixw3z21pw1cxrfh8";
};
buildInputs = [ openssl zlib ]
@ -51,6 +51,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru.tests.haproxy = nixosTests.haproxy;
meta = with lib; {
description = "Reliable, high performance TCP/HTTP load balancer";
longDescription = ''