From bd3373275c25231f31bd55079eb39b5ce13e41d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B9=82=E0=B8=97=E0=B8=AA=E0=B8=BA=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A5?= Date: Sat, 8 Feb 2025 16:31:02 +0700 Subject: [PATCH] =?UTF-8?q?h20:=202.3.0-beta1=20=E2=86=92=202.3.0.20250130?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > Release Policy > > As of April 2023, we have ceased to release versions. Rather, the each > commit to master branch is considered stable and ready for general use > except for the features marked as experimental. > > — https://h2o.examp1e.net/install.html Seems trunk-based version now :) --- pkgs/by-name/h2/h2o/package.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index 8dc95aa0d938..276b376e7a67 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -5,20 +5,24 @@ pkg-config, cmake, ninja, + perl, + brotli, openssl, + libcap, libuv, + wslay, zlib, }: stdenv.mkDerivation (finalAttrs: { pname = "h2o"; - version = "2.3.0-beta2"; + version = "2.3.0.20250130"; src = fetchFromGitHub { owner = "h2o"; repo = "h2o"; - tag = "v${finalAttrs.version}"; - sha256 = "0lwg5sfsr7fw7cfy0hrhadgixm35b5cgcvlhwhbk89j72y1bqi6n"; + rev = "26b116e9536be8cf07036185e3edf9d721c9bac2"; + sha256 = "sha256-WjsUUnSs3kXjAmh+V/lzL1QlxxXNCph99UsC29YAirQ="; }; outputs = [ @@ -32,11 +36,15 @@ stdenv.mkDerivation (finalAttrs: { pkg-config cmake ninja + perl ]; buildInputs = [ + brotli openssl + libcap libuv zlib + wslay ]; meta = with lib; {