Unverified Commit f0c82885 authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #251763 from LeSuisse/haproxy-2.8.2

haproxy: 2.8.1 -> 2.8.2
parents 81eeee01 0a89a794
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -18,11 +18,11 @@ assert usePcre -> pcre != null;

stdenv.mkDerivation (finalAttrs: {
  pname = "haproxy";
  version = "2.8.1";
  version = "2.8.2";

  src = fetchurl {
    url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz";
    hash = "sha256-SFVS/NnV1fQarQRvEx/Ap+hJvvJaNJoEB1CvDG/FaAc=";
    hash = "sha256-aY1pBtFwlGqGl2mWTleBa6PaOt9h/3XomXKxN/RljbA=";
  };

  buildInputs = [ openssl zlib libxcrypt ]
@@ -76,5 +76,6 @@ stdenv.mkDerivation (finalAttrs: {
    '';
    maintainers = with lib.maintainers; [ ];
    platforms = with lib.platforms; linux ++ darwin;
    mainProgram = "haproxy";
  };
})