From e1041316cb273567ebbbc13ed6717ffb692a1c87 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Mon, 5 Jan 2026 20:17:59 +0000 Subject: [PATCH] =?UTF-8?q?openrgb-plugin-hardwaresync:=200.9=20=E2=86=92?= =?UTF-8?q?=201.0rc2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../openrgb-plugin-hardwaresync/package.nix | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix b/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix index a9b3a26b5b83..c95bd80acd94 100644 --- a/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix +++ b/pkgs/by-name/op/openrgb-plugin-hardwaresync/package.nix @@ -2,38 +2,26 @@ lib, stdenv, fetchFromGitLab, - openrgb, glib, libgtop, lm_sensors, pkg-config, qt6Packages, - fetchpatch, }: stdenv.mkDerivation (finalAttrs: { pname = "openrgb-plugin-hardwaresync"; - version = "0.9"; + version = "1.0rc2"; src = fetchFromGitLab { owner = "OpenRGBDevelopers"; repo = "OpenRGBHardwareSyncPlugin"; - rev = "release_${finalAttrs.version}"; - hash = "sha256-3sQFiqmXhuavce/6v3XBpp6PAduY7t440nXfbfCX9a0="; + tag = "release_candidate_${finalAttrs.version}"; + hash = "sha256-t5NPlmCg0btHpD/hpHSwDRl8LjVoOiT89WoOm3PmhXA="; + fetchSubmodules = true; }; - patches = [ - # Fix Qt 6 build - (fetchpatch { - url = "https://gitlab.com/OpenRGBDevelopers/OpenRGBHardwareSyncPlugin/-/commit/62707c260953fb5ac2bb782595c18791bf54ff97.patch"; - hash = "sha256-xMsnVyrn/Cv2x2xQtAnPb5HJc+WolNx4v7h0TkTj9DU="; - }) - ]; - postPatch = '' - # Use the source of openrgb from nixpkgs instead of the submodule - rmdir OpenRGB - ln -s ${openrgb.src} OpenRGB # Remove prebuilt stuff rm -r dependencies/lhwm-cpp-wrapper '';