nixpkgs/pkgs/by-name/zc/zcfan/package.nix
2023-09-08 19:43:02 +02:00

42 lines
930 B
Nix

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