From a49bf4a521dcd81c3c4437a4f20c31d180933b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Thu, 25 Jun 2026 16:17:15 +0700 Subject: [PATCH 1/3] =?UTF-8?q?h2o:=20makeWrapper=20=E2=86=92=20makeBinary?= =?UTF-8?q?Wrapper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/h2/h2o/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index faa231744418..c87d218dfe08 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, pkg-config, cmake, - makeWrapper, + makeBinaryWrapper, ninja, perl, perlPackages, @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ pkg-config cmake - makeWrapper + makeBinaryWrapper ninja perlPackages.JSON ] From 6d2f708632caf9ef7988931f3a2a435d670787ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Thu, 25 Jun 2026 16:02:01 +0700 Subject: [PATCH 2/3] =?UTF-8?q?h2o:=202.3.0-rolling-2026-06-24=20=E2=86=92?= =?UTF-8?q?=202.3.0-rolling-2026-06-25?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/h2/h2o/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index c87d218dfe08..72d314ae5c26 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "h2o"; - version = "2.3.0-rolling-2026-06-24"; + version = "2.3.0-rolling-2026-06-25"; src = fetchFromGitHub { owner = "h2o"; repo = "h2o"; - rev = "66fcbfed806d7645577e4e78e4d536d38379764d"; - hash = "sha256-RzQHDHihcD+ife1CBCGliytrkt8eYVdL8AHdaYp3CFQ="; + rev = "58a9a054300a09235df52954101a49573762e0fc"; + hash = "sha256-TofY3JzWM4XNiMqna5KnmtBJETndJ/YY0sFY/0X99GA="; }; outputs = [ From 39e152cdbf81fe552a1cc478fdc050ef39306eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Thu, 25 Jun 2026 16:29:33 +0700 Subject: [PATCH 3/3] h2o: make Brotli optional 2026-06-25 updates made Brotli optional --- pkgs/by-name/h2/h2o/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index 72d314ae5c26..595bb7bef992 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -8,12 +8,13 @@ ninja, perl, perlPackages, - brotli, openssl, libcap, libuv, wslay, zlib, + withBrotli ? true, + brotli, withMruby ? true, bison, ruby, @@ -47,6 +48,7 @@ stdenv.mkDerivation (finalAttrs: { ninja perlPackages.JSON ] + ++ lib.optional withBrotli brotli ++ lib.optionals withMruby [ bison ruby @@ -61,9 +63,11 @@ stdenv.mkDerivation (finalAttrs: { perl zlib wslay - ]; + ] + ++ lib.optional withBrotli brotli; cmakeFlags = [ + "-DWITH_BROTLI=${if withBrotli then "ON" else "OFF"}" "-DWITH_MRUBY=${if withMruby then "ON" else "OFF"}" ];