2016-11-23 15:07:29 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, perl, makeWrapper, file, systemd, iw, rfkill
|
|
|
|
, hdparm, ethtool, inetutils , kmod, pciutils, smartmontools
|
|
|
|
, x86_energy_perf_policy, gawk, gnugrep, coreutils, utillinux
|
2015-11-09 14:24:08 +00:00
|
|
|
, enableRDW ? false, networkmanager
|
|
|
|
}:
|
2015-01-02 15:11:29 +00:00
|
|
|
|
2016-05-24 01:01:06 +01:00
|
|
|
let
|
|
|
|
paths = lib.makeBinPath
|
|
|
|
([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
|
2016-11-23 15:07:29 +00:00
|
|
|
x86_energy_perf_policy gawk gnugrep coreutils utillinux
|
2016-05-24 01:01:06 +01:00
|
|
|
]
|
|
|
|
++ lib.optional enableRDW networkmanager
|
|
|
|
);
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2015-01-02 15:11:29 +00:00
|
|
|
name = "tlp-${version}";
|
2018-02-01 21:09:20 +00:00
|
|
|
version = "1.1";
|
2015-01-02 15:11:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linrunner";
|
|
|
|
repo = "TLP";
|
|
|
|
rev = "${version}";
|
2018-02-01 21:09:20 +00:00
|
|
|
sha256 = "01bhb9hdsck1g2s5jvafr3ywml9k2qz7x2cf42a3z8g5d23pdfpy";
|
2015-01-02 15:11:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "DESTDIR=$(out)"
|
2016-11-23 15:07:29 +00:00
|
|
|
"TLP_SBIN=$(out)/bin"
|
|
|
|
"TLP_BIN=$(out)/bin"
|
|
|
|
"TLP_TLIB=$(out)/share/tlp-pm"
|
|
|
|
"TLP_PLIB=$(out)/lib/pm-utils"
|
|
|
|
"TLP_ULIB=$(out)/lib/udev"
|
|
|
|
"TLP_NMDSP=$(out)/etc/NetworkManager/dispatcher.d"
|
|
|
|
"TLP_SHCPL=$(out)/share/bash-completion/completions"
|
|
|
|
"TLP_MAN=$(out)/share/man"
|
|
|
|
|
2015-01-02 15:11:29 +00:00
|
|
|
"TLP_NO_INIT=1"
|
|
|
|
"TLP_NO_PMUTILS=1"
|
|
|
|
];
|
|
|
|
|
2016-11-23 15:07:29 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper file ];
|
2016-05-24 01:08:08 +01:00
|
|
|
|
2015-01-02 15:11:29 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2016-11-23 15:07:29 +00:00
|
|
|
installTargets = [ "install-tlp" "install-man" ] ++ stdenv.lib.optional enableRDW "install-rdw";
|
2015-01-02 15:11:29 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2016-11-23 15:07:29 +00:00
|
|
|
cp -r $out/$out/* $out
|
|
|
|
rm -rf $out/$(echo "$NIX_STORE" | cut -d "/" -f2)
|
|
|
|
|
|
|
|
for i in $out/bin/* $out/lib/udev/tlp-* ${lib.optionalString enableRDW "$out/etc/NetworkManager/dispatcher.d/*"}; do
|
|
|
|
if file "$i" | grep -q Perl; then
|
2016-05-24 01:08:08 +01:00
|
|
|
# Perl script; use wrapProgram
|
|
|
|
wrapProgram "$i" \
|
|
|
|
--prefix PATH : "${paths}"
|
|
|
|
else
|
|
|
|
# Bash script
|
|
|
|
sed -i '2iexport PATH=${paths}:$PATH' "$i"
|
|
|
|
fi
|
2015-01-02 15:11:29 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Advanced Power Management for Linux";
|
2018-06-27 21:12:57 +01: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;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
};
|
|
|
|
}
|