nixpkgs/pkgs/tools/misc/tlp/default.nix

127 lines
3.3 KiB
Nix
Raw Normal View History

2020-02-26 01:39:35 +00:00
{ stdenv
, lib
, checkbashisms
, coreutils
, ethtool
, fetchFromGitHub
, gawk
, gnugrep
, gnused
, hdparm
, iw
, kmod
, makeWrapper
, pciutils
, perl
, shellcheck
, smartmontools
, systemd
2020-11-24 15:29:28 +00:00
, util-linux
2020-02-26 01:39:35 +00:00
, x86_energy_perf_policy
# RDW only works with NetworkManager, and thus is optional with default off
, enableRDW ? false
, networkmanager
}: stdenv.mkDerivation rec {
pname = "tlp";
2020-02-26 01:39:35 +00:00
version = "1.3.1";
2015-01-02 15:11:29 +00:00
src = fetchFromGitHub {
owner = "linrunner";
repo = "TLP";
rev = version;
2020-02-26 01:39:35 +00:00
sha256 = "14fcnaz9pw534v4d8dddqq4wcvpf1kghr8zlrk62r5lrl46sp1p5";
};
2020-02-26 01:39:35 +00:00
# XXX: See patch files for relevant explanations.
patches = [ ./patches/fix-makefile-sed.patch ./patches/tlp-sleep-service.patch ];
2015-01-02 15:11:29 +00:00
2020-02-26 01:39:35 +00:00
buildInputs = [ perl ];
nativeBuildInputs = [ makeWrapper gnused ];
# XXX: While [1] states that DESTDIR should not be used, and that the correct
# variable to set is, in fact, PREFIX, tlp thinks otherwise. The Makefile for
# tlp concerns itself only with DESTDIR [2] (possibly incorrectly) and so we set
# that as opposed to PREFIX, despite what [1] says.
#
# [1]: https://github.com/NixOS/nixpkgs/issues/65718
# [2]: https://github.com/linrunner/TLP/blob/ab788abf4936dfb44fbb408afc34af834230a64d/Makefile#L4-L46
makeFlags = [
2020-02-26 01:39:35 +00:00
"DESTDIR=${placeholder "out"}"
2016-11-23 15:07:29 +00:00
"TLP_NO_INIT=1"
2020-02-26 01:39:35 +00:00
"TLP_WITH_ELOGIND=0"
"TLP_WITH_SYSTEMD=1"
2015-01-02 15:11:29 +00:00
2020-02-26 01:39:35 +00:00
"TLP_BIN=/bin"
"TLP_CONFDEF=/share/tlp/defaults.conf"
"TLP_FLIB=/share/tlp/func.d"
"TLP_MAN=/share/man"
"TLP_META=/share/metainfo"
"TLP_SBIN=/sbin"
"TLP_SHCPL=/share/bash-completion/completions"
"TLP_TLIB=/share/tlp"
2019-04-03 07:11:41 +00:00
];
2020-02-26 01:39:35 +00:00
installTargets = [ "install-tlp" "install-man" ]
++ lib.optionals enableRDW [ "install-rdw" "install-man-rdw" ];
# XXX: This is disabled because it's basically just noise since upstream
# itself does not seem to care about the zillion shellcheck errors.
doCheck = false;
checkInputs = [ checkbashisms shellcheck ];
2019-04-03 07:11:41 +00:00
checkTarget = [ "checkall" ];
2020-02-26 01:39:35 +00:00
postInstall = let
paths = lib.makeBinPath (
[
coreutils
ethtool
gawk
gnugrep
gnused
hdparm
iw
kmod
pciutils
perl
smartmontools
systemd
2020-11-24 15:29:28 +00:00
util-linux
2020-02-26 01:39:35 +00:00
] ++ lib.optional enableRDW networkmanager
2021-02-25 16:21:13 +00:00
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform x86_energy_perf_policy) x86_energy_perf_policy
2020-02-26 01:39:35 +00:00
);
in
''
fixup_perl=(
$out/share/tlp/tlp-pcilist
$out/share/tlp/tlp-readconfs
$out/share/tlp/tlp-usblist
$out/share/tlp/tpacpi-bat
)
for f in "''${fixup_perl[@]}"; do
wrapProgram "$f" --prefix PATH : "${paths}"
done
2016-11-23 15:07:29 +00:00
2020-02-26 01:39:35 +00:00
fixup_bash=(
$out/bin/*
$out/etc/NetworkManager/dispatcher.d/*
$out/lib/udev/tlp-*
$out/sbin/*
$out/share/tlp/func.d/*
$out/share/tlp/tlp-func-base
)
for f in "''${fixup_bash[@]}"; do
sed -i '2iexport PATH=${paths}:$PATH' "$f"
done
'';
2015-01-02 15:11:29 +00:00
2020-02-26 01:39:35 +00:00
meta = with lib; {
2015-01-02 15:11:29 +00:00
description = "Advanced Power Management for Linux";
2020-02-26 01:39:35 +00:00
homepage =
"https://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html";
2015-01-02 15:11:29 +00:00
platforms = platforms.linux;
2020-02-26 04:03:16 +00:00
maintainers = with maintainers; [ abbradar lovesegfault ];
2015-01-02 15:11:29 +00:00
license = licenses.gpl2Plus;
};
}