Unverified Commit b20ef5bf authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

Merge pull request #280487 from marrobHD/patch-2

haproxy: 2.9.1 -> 2.9.2
parents 675aa305 154ad83d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,11 +24,11 @@ assert !useQuicTls -> openssl != null;
let sslPkg = if useQuicTls then quictls else openssl;
in stdenv.mkDerivation (finalAttrs: {
  pname = "haproxy";
  version = "2.9.1";
  version = "2.9.2";

  src = fetchurl {
    url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz";
    hash = "sha256-1YAcdyqrnEP0CWS3sztDiNFLW0V1C+TSZxeFhjzbnxw=";
    hash = "sha256-hRrugw7CjBeRJGqf1EePZD0RWlY92Qf2YSzDgalSqzw=";
  };

  buildInputs = [ sslPkg zlib libxcrypt ]