apteryx pushed a commit to branch version-1.4.0
in repository guix.
commit 1141111fc98a4848fa3b4580701feccaa0e6c6a0
Author: Sarah Morgensen <[email protected]>
AuthorDate: Mon Jul 26 19:56:40 2021 -0700
gnu: go-ipfs: Remove obsolete phase.
* gnu/packages/ipfs.scm (go-ipfs)[arguments]<#:phases>: Remove
'make-files-writable phase.
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/ipfs.scm | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 7e9a49a31b..ccc36007b4 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -230,16 +230,7 @@ written in Go.")
(build-system go-build-system)
(arguments
`(#:unpack-path "github.com/ipfs/go-ipfs"
- #:import-path "github.com/ipfs/go-ipfs/cmd/ipfs"
- #:phases (modify-phases %standard-phases
- (add-before 'reset-gzip-timestamps 'make-files-writable
- (lambda* (#:key outputs #:allow-other-keys)
- ;; Make sure .gz files are writable so that the
- ;; 'reset-gzip-timestamps' phase can do its work.
- (let ((out (assoc-ref outputs "out")))
- (for-each make-file-writable
- (find-files out "\\.gz$"))
- #t))))))
+ #:import-path "github.com/ipfs/go-ipfs/cmd/ipfs"))
(native-inputs
(list python-minimal-wrapper zsh))
(home-page "https://ipfs.io")