Merge pull request #253579 from kashw2/zcfan

zcfan: init at 1.2.1
This commit is contained in:
Weijia Wang 2023-09-08 20:29:54 +02:00 committed by GitHub
commit 7dc6783ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchFromGitHub
}:
# Testing this requires a Thinkpad or the presence of /proc/acpi/ibm/fan
stdenv.mkDerivation (finalAttrs: {
pname = "zcfan";
version = "1.2.1";
src = fetchFromGitHub {
owner = "cdown";
repo = "zcfan";
rev = finalAttrs.version;
hash = "sha256-XngchR06HP2iExKJVe+XKBDgsv98AEYWOkl1a/Hktgs=";
};
postPatch = ''
substituteInPlace Makefile \
--replace "/usr/local" $out
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/${finalAttrs.pname} -h
runHook postInstallCheck
'';
meta = with lib; {
description = "A zero-configuration fan daemon for ThinkPads";
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;
};
})