zcfan: init at 1.2.1

This commit is contained in:
kashw2 2023-09-06 15:56:18 +10:00 committed by Weijia Wang
parent f95a262d75
commit 7a7d94c242

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;
};
})