coolercontrol: 4.3.0 -> 4.3.1 (#523395)

This commit is contained in:
Cosima Neidahl 2026-06-06 14:44:54 +00:00 committed by GitHub
commit a8adcfa602
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View file

@ -12,7 +12,7 @@ buildNpmPackage {
sourceRoot = "${src.name}/coolercontrol-ui";
npmDepsFetcherVersion = 2;
npmDepsHash = "sha256-fWsksBQCwHHWYE82NG0Vf/f+Hk02YMCUaGMHFGhGx2U=";
npmDepsHash = "sha256-zolbx5ROiFzNhPGcOnJjEiY3W2IXI24wLKPj3wRSLXU=";
postBuild = ''
cp -r dist $out

View file

@ -23,7 +23,7 @@ rustPlatform.buildRustPackage {
inherit version src;
sourceRoot = "${src.name}/coolercontrold";
cargoHash = "sha256-f0SsTwriUo2rD97L+Z/bq7UahOSLjYjH8bbXg/Hx5qE=";
cargoHash = "sha256-DE1m/odw90epyR8U9H1pxyJXariIHLXwk+mVYi8cu5A=";
buildInputs = [
hwdata
@ -37,6 +37,11 @@ rustPlatform.buildRustPackage {
python3Packages.wrapPython
];
checkFlags = [
# This test has a build-machine dependency and will be removed from the normal test suite in the next release
"--skip=repositories::hwmon::hwmon_repo::coalescer_tests::fast_device_no_added_latency"
];
pythonPath = [ liquidctl ];
postPatch = ''

View file

@ -5,13 +5,13 @@
}:
let
version = "4.3.0";
version = "4.3.1";
src = fetchFromGitLab {
owner = "coolercontrol";
repo = "coolercontrol";
tag = version;
hash = "sha256-hmxeqsCv0URBSe4sU637h4OYroLHQRcOtkFuyKoES7c=";
hash = "sha256-nFlaiQtc4r3FBmdhErUAucG3SQ1GWQX9ClnZXGVWjbc=";
};
meta = {