mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
336f4e3431
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tlp/versions
82 lines
2.2 KiB
Nix
82 lines
2.2 KiB
Nix
{ stdenv, lib, fetchFromGitHub, perl, makeWrapper, file, systemd, iw, rfkill
|
|
, hdparm, ethtool, inetutils , kmod, pciutils, smartmontools
|
|
, x86_energy_perf_policy, gawk, gnugrep, coreutils, utillinux
|
|
, checkbashisms, shellcheck
|
|
, enableRDW ? false, networkmanager
|
|
}:
|
|
|
|
let
|
|
paths = lib.makeBinPath
|
|
([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
|
|
x86_energy_perf_policy gawk gnugrep coreutils utillinux
|
|
]
|
|
++ lib.optional enableRDW networkmanager
|
|
);
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "tlp-${version}";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linrunner";
|
|
repo = "TLP";
|
|
rev = version;
|
|
sha256 = "0vm31ca6kdak9xzwskz7a8hvdp67drfh2zcdwlz3260r8r2ypgg1";
|
|
};
|
|
|
|
outRef = placeholder "out";
|
|
|
|
makeFlags = [
|
|
"DESTDIR=${outRef}"
|
|
"TLP_SBIN=${outRef}/bin"
|
|
"TLP_BIN=${outRef}/bin"
|
|
"TLP_TLIB=${outRef}/share/tlp"
|
|
"TLP_FLIB=${outRef}/share/tlp/func.d"
|
|
"TLP_ULIB=${outRef}/lib/udev"
|
|
"TLP_NMDSP=${outRef}/etc/NetworkManager/dispatcher.d"
|
|
"TLP_SHCPL=${outRef}/share/bash-completion/completions"
|
|
"TLP_MAN=${outRef}/share/man"
|
|
"TLP_META=${outRef}/share/metainfo"
|
|
|
|
"TLP_NO_INIT=1"
|
|
];
|
|
|
|
nativeBuildInputs = [ makeWrapper file ];
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
installTargets = [ "install-tlp" "install-man" ] ++ stdenv.lib.optional enableRDW "install-rdw";
|
|
|
|
checkInputs = [
|
|
checkbashisms
|
|
shellcheck
|
|
];
|
|
|
|
doCheck = true;
|
|
checkTarget = [ "checkall" ];
|
|
|
|
postInstall = ''
|
|
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
|
|
# Perl script; use wrapProgram
|
|
wrapProgram "$i" \
|
|
--prefix PATH : "${paths}"
|
|
else
|
|
# Bash script
|
|
sed -i '2iexport PATH=${paths}:$PATH' "$i"
|
|
fi
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Advanced Power Management for Linux";
|
|
homepage = https://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|