diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2023-09-10 10:18:44 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-09-14 23:43:19 +0200 |
commit | 1149cc1b9f2f3124f890c76497b826d7f959cec2 (patch) | |
tree | eb72da87b8f1d28722695917e9f1c62980885058 | |
parent | a5bc9f233f630e06b05f3029b181ba951502c00d (diff) |
gnu: go-ipfs: Update to 0.13.0.
* gnu/packages/ipfs.scm (go-ipfs): Update to 0.13.0.
[inputs]: Add GO-GOLANG-ORG-X-{EXP,TEXT}.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/ipfs.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 141653176b..1e4a7cca3a 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2019, 2020 Martin Becze <mjbecze@riseup.net> ;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be> +;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -220,7 +221,7 @@ written in Go.") (define-public go-ipfs (package (name "go-ipfs") - (version "0.11.0") + (version "0.13.0") (source (origin (method url-fetch/tarbomb) @@ -228,7 +229,7 @@ written in Go.") "https://dist.ipfs.io/go-ipfs/v" version "/go-ipfs-source.tar.gz")) (sha256 - (base32 "13pmj83hwpz6mk7x52qn0cjnfqxqw2qri3r0k4b270w3bafcccwm")) + (base32 "1cx47ais2zn62c0r7lmrpfzia2gjyr61qi8my5wg3pj3dfr0fhkq")) (file-name (string-append name "-" version "-source")) (modules '((guix build utils))) (snippet '(for-each delete-file-recursively @@ -350,6 +351,8 @@ written in Go.") go-golang-org-x-term go-golang-org-x-tools go-golang-org-x-xerrors + go-golang-org-x-exp + go-golang-org-x-text go-lukechampine-com-blake3)) (native-inputs (append (if (%current-target-system) |