From a69626f52441e60fb23bddc9e47ffc42895c624d Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 22 Mar 2026 23:04:23 +0100 Subject: [PATCH] coolercontrol.{coolercontrold,coolercontrol-ui-data,coolercontrol-gui}: 4.0.1 -> 4.1.0 --- .../system/coolercontrol/coolercontrol-ui-data.nix | 2 +- pkgs/applications/system/coolercontrol/coolercontrold.nix | 4 ++-- pkgs/applications/system/coolercontrol/default.nix | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/system/coolercontrol/coolercontrol-ui-data.nix b/pkgs/applications/system/coolercontrol/coolercontrol-ui-data.nix index 04dc724254ae..c7dfa03f8617 100644 --- a/pkgs/applications/system/coolercontrol/coolercontrol-ui-data.nix +++ b/pkgs/applications/system/coolercontrol/coolercontrol-ui-data.nix @@ -12,7 +12,7 @@ buildNpmPackage { sourceRoot = "${src.name}/coolercontrol-ui"; npmDepsFetcherVersion = 2; - npmDepsHash = "sha256-NmTNaHm7NGkNWnNbTfLC9/3cSJRR+ir1YS+ot4MJNog="; + npmDepsHash = "sha256-AzRw6DuloOFC7VN7yM9czqxosfVIoXAltv2xHUxac7k="; postBuild = '' cp -r dist $out diff --git a/pkgs/applications/system/coolercontrol/coolercontrold.nix b/pkgs/applications/system/coolercontrol/coolercontrold.nix index d6a6435ea382..1a2719cf0d34 100644 --- a/pkgs/applications/system/coolercontrol/coolercontrold.nix +++ b/pkgs/applications/system/coolercontrol/coolercontrold.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage { inherit version src; sourceRoot = "${src.name}/coolercontrold"; - cargoHash = "sha256-i6QYJ2kVXpYVbGyY/5EeGbCVCkxLeqf1mgvrXKRdup0="; + cargoHash = "sha256-rFwbHsGkKLD9UgkdTbxMIjARmU0Ewal1NIwlbzRL/vc="; buildInputs = [ libdrm ]; @@ -44,7 +44,7 @@ rustPlatform.buildRustPackage { --replace-fail 'Command::new("sh")' 'Command::new("${runtimeShell}")' # This is supposed to be a "nix-compatible file path", but there is nothing that actually does the substitution - substituteInPlace ../../coolercontrold-${version}-vendor/pciid-parser-*/src/lib.rs \ + substituteInPlace daemon/src/repositories/hwmon/pci_ids.rs \ --replace-fail '@hwdata@' '${hwdata}' ''; diff --git a/pkgs/applications/system/coolercontrol/default.nix b/pkgs/applications/system/coolercontrol/default.nix index 343f79d3c8c2..62e10a00710f 100644 --- a/pkgs/applications/system/coolercontrol/default.nix +++ b/pkgs/applications/system/coolercontrol/default.nix @@ -5,13 +5,13 @@ }: let - version = "4.0.1"; + version = "4.1.0"; src = fetchFromGitLab { owner = "coolercontrol"; repo = "coolercontrol"; tag = version; - hash = "sha256-X8KEZARksSwmFEKnGnwZk9aQ0ND6fOsSelCIWPkEjN8="; + hash = "sha256-v1enPMezagA3gcYD5EbC1ecTOXEsMLRGWIKzgDxzRWg="; }; meta = {