mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: kubo: Update to 0.16.0.
* gnu/packages/ipfs.scm (kubo): Update to 0.16.0. [arguments]: Use go-1.18. [home-page]: Set to "https://ipfs.tech". Change-Id: I06239354b0c9c23294d5aeac6d01f67636d5d3a5 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
c0f423bf1a
commit
f7c0ccb186
1 changed files with 5 additions and 4 deletions
|
@ -4,7 +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>
|
||||
;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -223,7 +223,7 @@ (define-public gx-go
|
|||
(define-public kubo
|
||||
(package
|
||||
(name "kubo")
|
||||
(version "0.15.0")
|
||||
(version "0.16.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch/tarbomb)
|
||||
|
@ -231,7 +231,7 @@ (define-public kubo
|
|||
"https://dist.ipfs.io/kubo/v" version
|
||||
"/kubo-source.tar.gz"))
|
||||
(sha256
|
||||
(base32 "0ss5k8xnzn9qk977dni5ja89yygcysdw7r3mdk67cac2dpa9hhqs"))
|
||||
(base32 "0v8p4mjwsrqxzd6wdzafxnnfrv919x5p3r5342lbrjdv0k0yabhm"))
|
||||
(file-name (string-append name "-" version "-source"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet '(for-each delete-file-recursively
|
||||
|
@ -286,6 +286,7 @@ (define-public kubo
|
|||
(list
|
||||
#:unpack-path "github.com/ipfs/kubo"
|
||||
#:import-path "github.com/ipfs/kubo/cmd/ipfs"
|
||||
#:go go-1.18
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; https://github.com/ipfs/kubo/blob/master/docs/command-completion.md
|
||||
|
@ -361,7 +362,7 @@ (define-public kubo
|
|||
(list this-package)
|
||||
'())
|
||||
(list python-minimal-wrapper zsh)))
|
||||
(home-page "https://ipfs.io")
|
||||
(home-page "https://ipfs.tech")
|
||||
(synopsis "Go implementation of IPFS, a peer-to-peer hypermedia protocol")
|
||||
(description "IPFS is a global, versioned, peer-to-peer file system. It
|
||||
combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web. It is
|
||||
|
|
Loading…
Reference in a new issue