parent
813f866a90
commit
c6e775a875
|
@ -11,7 +11,7 @@
|
||||||
;;; Copyright © 2016, 2017 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2016, 2017 Alex Kost <alezost@gmail.com>
|
||||||
;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
|
;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
|
||||||
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
||||||
;;; Copyright © 2016, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2016, 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
||||||
|
@ -4270,7 +4270,7 @@ Light is the successor of lightscript.")
|
||||||
(define-public tlp
|
(define-public tlp
|
||||||
(package
|
(package
|
||||||
(name "tlp")
|
(name "tlp")
|
||||||
(version "1.1")
|
(version "1.2.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -4280,7 +4280,7 @@ Light is the successor of lightscript.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"068hzmh90x600saynbl7iwg1pm0ywldn4jazyxx5y1fixs8s1qbn"))))
|
"0rcp9i0fisdm4h6799ffr696l1vl661fnwb2dij268nlwwmkr90g"))))
|
||||||
(inputs `(("bash" ,bash)
|
(inputs `(("bash" ,bash)
|
||||||
("dbus" ,dbus)
|
("dbus" ,dbus)
|
||||||
("ethtool" ,ethtool)
|
("ethtool" ,ethtool)
|
||||||
|
@ -4310,7 +4310,8 @@ Light is the successor of lightscript.")
|
||||||
(setenv "TLP_NO_PMUTILS" "1")
|
(setenv "TLP_NO_PMUTILS" "1")
|
||||||
(setenv "TLP_SBIN" (string-append out "/bin"))
|
(setenv "TLP_SBIN" (string-append out "/bin"))
|
||||||
(setenv "TLP_BIN" (string-append out "/bin"))
|
(setenv "TLP_BIN" (string-append out "/bin"))
|
||||||
(setenv "TLP_TLIB" (string-append out "/share/tlp-pm"))
|
(setenv "TLP_TLIB" (string-append out "/share/tlp"))
|
||||||
|
(setenv "TLP_FLIB" (string-append out "/share/tlp/func.d"))
|
||||||
(setenv "TLP_ULIB" (string-append out "/lib/udev"))
|
(setenv "TLP_ULIB" (string-append out "/lib/udev"))
|
||||||
(setenv "TLP_CONF" "/etc/tlp")
|
(setenv "TLP_CONF" "/etc/tlp")
|
||||||
(setenv "TLP_SHCPL"
|
(setenv "TLP_SHCPL"
|
||||||
|
@ -4364,7 +4365,6 @@ Light is the successor of lightscript.")
|
||||||
a default configuration already optimized for battery life. Nevertheless,
|
a default configuration already optimized for battery life. Nevertheless,
|
||||||
TLP is customizable to fulfil system requirements. TLP settings are applied
|
TLP is customizable to fulfil system requirements. TLP settings are applied
|
||||||
every time the power supply source is changed.")
|
every time the power supply source is changed.")
|
||||||
|
|
||||||
;; 'COPYING' is a custom version that says that one file is GPLv3+ and the
|
;; 'COPYING' is a custom version that says that one file is GPLv3+ and the
|
||||||
;; rest is GPLv2+.
|
;; rest is GPLv2+.
|
||||||
(license (list license:gpl2+ license:gpl3+))))
|
(license (list license:gpl2+ license:gpl3+))))
|
||||||
|
|
Reference in New Issue