nixpkgs/pkgs/tools/system/thinkfan/default.nix

60 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
, libyamlcpp
, pkg-config
, procps
, coreutils
, smartSupport ? false, libatasmart
}:
2013-04-06 00:34:50 +02:00
2015-12-27 21:21:43 +01:00
stdenv.mkDerivation rec {
pname = "thinkfan";
2021-10-28 13:53:14 +02:00
version = "1.3.0";
2013-04-06 00:34:50 +02:00
2019-02-16 11:51:59 +01:00
src = fetchFromGitHub {
owner = "vmatare";
repo = "thinkfan";
rev = version;
2021-10-28 13:53:14 +02:00
sha256 = "sha256-ZCZqi7A4qdWtDSkTw6ktHIZnPhdes2AX7+QBroaDDfI=";
2013-04-06 00:34:50 +02:00
};
2015-12-27 21:21:43 +01:00
2021-02-03 11:37:45 +01:00
postPatch = ''
# fix hardcoded install path
substituteInPlace CMakeLists.txt --replace /etc $out/etc
# fix command paths in unit files
for unit in rcscripts/systemd/*; do
substituteInPlace "$unit" \
--replace /bin/kill ${procps}/bin/kill \
--replace /usr/bin/pkill ${procps}/bin/pkill \
--replace /usr/bin/sleep ${coreutils}/bin/sleep
done
'';
cmakeFlags = [
"-DCMAKE_INSTALL_DOCDIR=share/doc/${pname}"
2019-02-16 11:51:59 +01:00
"-DUSE_NVML=OFF"
2021-02-03 11:37:45 +01:00
# force install unit files
"-DSYSTEMD_FOUND=ON"
2021-01-15 10:19:50 +01:00
] ++ lib.optional smartSupport "-DUSE_ATASMART=ON";
2015-12-27 21:21:43 +01:00
nativeBuildInputs = [ cmake pkg-config ];
2019-02-16 11:51:59 +01:00
2021-01-15 10:19:50 +01:00
buildInputs = [ libyamlcpp ] ++ lib.optional smartSupport libatasmart;
meta = {
description = "A simple, lightweight fan control program";
longDescription = ''
Thinkfan is a minimalist fan control program. Originally designed
specifically for IBM/Lenovo Thinkpads, it now supports any kind of
system via the sysfs hwmon interface (/sys/class/hwmon).
'';
license = lib.licenses.gpl3Plus;
homepage = "https://github.com/vmatare/thinkfan";
2021-02-03 11:29:34 +01:00
maintainers = with lib.maintainers; [ domenkozar rnhmjoj ];
platforms = lib.platforms.linux;
2013-04-06 00:34:50 +02:00
};
}