diff options
author | Antoine Côté <antoine.cote@posteo.net> | 2021-02-03 23:50:17 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-02-04 14:33:11 +0100 |
commit | e7195e83c85a83131c0981bae2b6e5613669ebd1 (patch) | |
tree | 3190eb632eb506655b1b4aa275a833e4c9f7cce3 | |
parent | 80546d54d2ef2e7ba5eae10bbd6d61e7dcc58bd4 (diff) | |
download | guix-e7195e83c85a83131c0981bae2b6e5613669ebd1.tar.gz guix-e7195e83c85a83131c0981bae2b6e5613669ebd1.zip |
gnu: tarlz: Update to 0.19.
* gnu/packages/compression.scm (tarlz): Update to 0.19.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/compression.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index d5fb7635ea..8e7a2afc09 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -30,6 +30,7 @@ ;;; Copyright © 2020 Lars-Dominik Braun <lars@6xq.net> ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2020 Léo Le Bouter <lle-bout@zaclys.net> +;;; Copyright © 2021 Antoine Côté <antoine.cote@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2367,14 +2368,14 @@ to their original, binary CD format.") (define-public tarlz (package (name "tarlz") - (version "0.17") + (version "0.19") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/tarlz/" "tarlz-" version ".tar.lz")) (sha256 - (base32 "0gpdm6z9pdr5bn31kxg73wm686hhpb5pdf5782pbl5a4xqqhqj90")))) + (base32 "09xal55973ivzpaja93jcc1pfla8gb3vrk8dx7pj9qvvz5aynf9n")))) (build-system gnu-build-system) (native-inputs `(("lzip" ,lzip))) |