diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-02-12 23:03:05 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-02-12 23:03:05 +0100 |
commit | 0d4e780e778e804ee014741fde74738e66f16ce2 (patch) | |
tree | 8651027ebd62284c8832b99ae18a611d38c69a18 | |
parent | eeb372b56278b3f44e83c02c3f7a8b44925730b7 (diff) | |
download | patches-0d4e780e778e804ee014741fde74738e66f16ce2.tar patches-0d4e780e778e804ee014741fde74738e66f16ce2.tar.gz |
gnu: tlp: Update to 1.3.1.
* gnu/packages/linux.scm (tlp): Update to 1.3.1.
-rw-r--r-- | gnu/packages/linux.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 53029db709..d8eaa45fe5 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5185,15 +5185,16 @@ interface in sysfs, which can be accomplished with the included udev rules.") (define-public tlp (package (name "tlp") - (version "1.3.0") + (version "1.3.1") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/linrunner/TLP/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/linrunner/TLP.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "169k3xypq5rq0xiggrlpr73yr2r2x7b2d9vcr9ac96qrgph7sk7r")))) + (base32 "14fcnaz9pw534v4d8dddqq4wcvpf1kghr8zlrk62r5lrl46sp1p5")))) (native-inputs `(("shellcheck" ,shellcheck))) (inputs |