From 924ad3375bf8c09d55d2f8e30b2daf5fa9562cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliv=C3=A9r=20Falvai?= Date: Fri, 17 Oct 2025 19:39:04 +0200 Subject: [PATCH] uclient: unstable-2023-04-13 -> unstable-2025-10-03 --- pkgs/by-name/uc/uclient/package.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/uc/uclient/package.nix b/pkgs/by-name/uc/uclient/package.nix index a80896b15c92..186076019768 100644 --- a/pkgs/by-name/uc/uclient/package.nix +++ b/pkgs/by-name/uc/uclient/package.nix @@ -5,23 +5,29 @@ cmake, pkg-config, libubox, + ucode, + json_c, }: stdenv.mkDerivation { pname = "uclient"; - version = "unstable-2023-04-13"; + version = "unstable-2025-10-03"; src = fetchgit { url = "https://git.openwrt.org/project/uclient.git"; - rev = "007d945467499f43656b141171d31f5643b83a6c"; - hash = "sha256-A47dyVc2MtOL6aImZ0b3SMWH2vzjfAXzRAOF4nfH6S0="; + rev = "dc909ca71bc884c0e5362e1d7cc7808696cb2add"; + hash = "sha256-jrhLBB3Mb7FvxMtKxG7e7D/hcyygTjx868POGtF+Dcc="; }; nativeBuildInputs = [ cmake pkg-config ]; - buidInputs = [ libubox ]; + buildInputs = [ + libubox + ucode + json_c + ]; preConfigure = '' sed -e 's|ubox_include_dir libubox/ustream-ssl.h|ubox_include_dir libubox/ustream-ssl.h HINTS ${libubox}/include|g' \