diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-02-06 21:04:19 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-09 16:34:10 +0000 |
commit | 513755d64debb44096f21e323a5b89a7a597d2ca (patch) | |
tree | a205d0c697032f9c71157c32f02630b1c273cc5b /gnu | |
parent | 570ef13a87bb54d3410c431700ba78316a2641e2 (diff) |
gnu: kubo: Update to 0.19.0.
* gnu/packages/ipfs.scm (kubo): Update to 0.19.0.
[arguments]: Use go-1.20.
Change-Id: I4a267c4712f5dc13b200bdc3a59105265093b392
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ipfs.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index df00287460..a1b9333066 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -224,7 +224,7 @@ written in Go.") (define-public kubo (package (name "kubo") - (version "0.18.0") + (version "0.19.0") (source (origin (method url-fetch/tarbomb) @@ -232,7 +232,7 @@ written in Go.") "https://dist.ipfs.io/kubo/v" version "/kubo-source.tar.gz")) (sha256 - (base32 "0fx5a974hyg29xvwwsmh3zz3nk3391ifyk3l0wl36xskfdqdwg5a")) + (base32 "0k0mw44fq6306pmfp6v4wawgigry9plnl2ij8i5f46606j55c31w")) (file-name (string-append name "-" version "-source")) (modules '((guix build utils))) (snippet '(for-each delete-file-recursively @@ -287,7 +287,7 @@ written in Go.") (list #:unpack-path "github.com/ipfs/kubo" #:import-path "github.com/ipfs/kubo/cmd/ipfs" - #:go go-1.18 + #:go go-1.20 #:phases #~(modify-phases %standard-phases ;; https://github.com/ipfs/kubo/blob/master/docs/command-completion.md |