zcfan: 1.3.0 -> 1.4.0 (#369327)

This commit is contained in:
Peder Bergebakken Sundt
2025-01-08 18:50:43 +01:00
committed by GitHub
+9 -6
View File
@@ -7,13 +7,13 @@
# Testing this requires a Thinkpad or the presence of /proc/acpi/ibm/fan
stdenv.mkDerivation (finalAttrs: {
pname = "zcfan";
version = "1.3.0";
version = "1.4.0";
src = fetchFromGitHub {
owner = "cdown";
repo = "zcfan";
rev = finalAttrs.version;
hash = "sha256-zpYQEHXt8LBNX+luM4YxP0dKH+hb2c8Z0BEeGP09oZo=";
hash = "sha256-/q9jDqjG4g211CTb4ahagpxux2BsZWTEyoAY8kRRTB8=";
};
postPatch = ''
@@ -31,13 +31,16 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstallCheck
'';
meta = with lib; {
meta = {
description = "Zero-configuration fan daemon for ThinkPads";
mainProgram = "zcfan";
homepage = "https://github.com/cdown/zcfan";
changelog = "https://github.com/cdown/zcfan/tags/${finalAttrs.version}";
license = licenses.mit;
maintainers = with maintainers; [ kashw2 ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
luftmensch-luftmensch
kashw2
];
platforms = lib.platforms.linux;
};
})