[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/10: gnu: go-ipfs: Update to 0.11.0.
From: |
guix-commits |
Subject: |
08/10: gnu: go-ipfs: Update to 0.11.0. |
Date: |
Sat, 18 Dec 2021 16:54:09 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit a5c24f6511e1f2652531dd6aaabf1c2c3d5ac6e5
Author: Konrad Hinsen <konrad.hinsen@fastmail.net>
AuthorDate: Mon Dec 13 16:41:43 2021 +0100
gnu: go-ipfs: Update to 0.11.0.
* gnu/packages/ipfs.scm (go-ipfs): Update to 0.11.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/ipfs.scm | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 51808bd..f566b85 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -25,7 +25,9 @@
#:use-module (guix git-download)
#:use-module (guix download)
#:use-module (guix build-system go)
- #:use-module (gnu packages golang))
+ #:use-module (gnu packages golang)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages shells))
(define-public go-github-com-ipfs-go-ipfs-cmdkit-files
(let ((commit
@@ -214,7 +216,7 @@ written in Go.")
(define-public go-ipfs
(package
(name "go-ipfs")
- (version "0.8.0")
+ (version "0.11.0")
(source
(origin
(method url-fetch/tarbomb)
@@ -222,12 +224,13 @@ written in Go.")
"https://dist.ipfs.io/go-ipfs/v" version
"/go-ipfs-source.tar.gz"))
(sha256
- (base32 "0k2qzlfz8ks9c70rxsy7jvk6d2s6yll1b8v9k2kcw07r989gxbdq"))
+ (base32 "13pmj83hwpz6mk7x52qn0cjnfqxqw2qri3r0k4b270w3bafcccwm"))
(file-name (string-append name "-" version "-source"))))
(build-system go-build-system)
(arguments
- '(#:unpack-path "github.com/ipfs/go-ipfs"
+ `(#:unpack-path "github.com/ipfs/go-ipfs"
#:import-path "github.com/ipfs/go-ipfs/cmd/ipfs"
+ #:go ,go-1.17
#:phases (modify-phases %standard-phases
(add-before 'reset-gzip-timestamps 'make-files-writable
(lambda* (#:key outputs #:allow-other-keys)
@@ -237,6 +240,8 @@ written in Go.")
(for-each make-file-writable
(find-files out "\\.gz$"))
#t))))))
+ (native-inputs
+ (list python-minimal-wrapper zsh))
(home-page "https://ipfs.io")
(synopsis "Go implementation of IPFS, a peer-to-peer hypermedia protocol")
(description "IPFS is a global, versioned, peer-to-peer file system. It
- branch master updated (cfcfda5 -> f6e79ef), guix-commits, 2021/12/18
- 01/10: gnu: Add Guile-Plotutils., guix-commits, 2021/12/18
- 06/10: gnu: sssd: Fix build with glibc-2.33, guix-commits, 2021/12/18
- 05/10: gnu: Add xfoil., guix-commits, 2021/12/18
- 03/10: gnu: Move instrumentation tools to instrumentation module., guix-commits, 2021/12/18
- 09/10: style: Refer to source files by absolute file names., guix-commits, 2021/12/18
- 10/10: style: Gracefully handle errors such as EACCES when opening files., guix-commits, 2021/12/18
- 02/10: gnu: Add Dyninst., guix-commits, 2021/12/18
- 04/10: gnu: babeltrace, lttng-tools: Simplify inputs., guix-commits, 2021/12/18
- 07/10: import: elpa: Support ‘upstream-name’ property., guix-commits, 2021/12/18
- 08/10: gnu: go-ipfs: Update to 0.11.0.,
guix-commits <=