diff options
author | Joaquín Aguirrezabalaga <kinote@kinote.org> | 2025-07-11 15:18:06 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-12 13:24:33 +0200 |
commit | 6825643af506ad465b91b92af882144062ec5cb4 (patch) | |
tree | ea164a64b1bc3b95d629239d3186fad42919e8fd | |
parent | 6c53b11e1cd9a4a25a6a43b8514dd5ec37b77c80 (diff) |
gnu: uuu: Update to 1.5.201.
* gnu/packages/flashing-tools.scm (uuu): Update to 1.5.201.
[inputs]: Add tinyxml2.
Change-Id: Id8c6b29c33d2808d04aff38f12b1556743dc7e64
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/flashing-tools.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm index 2ea3fcdd1f..5b86f60e7b 100644 --- a/gnu/packages/flashing-tools.scm +++ b/gnu/packages/flashing-tools.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2023 B. Wilson <x@wilsonb.com> ;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> +;;; Copyright © 2025 Joaquín Aguirrezabalaga <kinote@kinote.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -591,7 +592,7 @@ formats, and can perform many different manipulations.") (define-public uuu (package (name "uuu") - (version "1.5.125") + (version "1.5.201") (source (origin (method git-fetch) @@ -601,7 +602,7 @@ formats, and can perform many different manipulations.") (file-name (git-file-name name version)) (sha256 (base32 - "02nyax1z2qkcxs764lj5cpazv8n957hv9ipd9b5rqpgi9pgnvlvz")))) + "0jil04khy0lxllhapdm86yyq9i3xqrlvmf6g5r53qmq9jyvxwlhv")))) (arguments `(#:tests? #f ; no tests #:modules ((guix build utils) @@ -629,7 +630,7 @@ formats, and can perform many different manipulations.") (native-inputs (list pkg-config)) (inputs - (list libusb bzip2 zlib libzip openssl + (list libusb bzip2 zlib libzip openssl tinyxml2 `(,zstd "lib"))) (home-page "https://github.com/NXPmicro/mfgtools") (synopsis "Freescale/NXP I.MX chip image deploy tools") |