gnu: go-ipfs: Remove obsolete phase.
* gnu/packages/ipfs.scm (go-ipfs)[arguments]<#:phases>: Remove 'make-files-writable phase. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
1ba19f4bf1
commit
b67d82972e
1 changed files with 1 additions and 10 deletions
|
@ -230,16 +230,7 @@ written in Go.")
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:unpack-path "github.com/ipfs/go-ipfs"
|
`(#:unpack-path "github.com/ipfs/go-ipfs"
|
||||||
#:import-path "github.com/ipfs/go-ipfs/cmd/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))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-minimal-wrapper zsh))
|
(list python-minimal-wrapper zsh))
|
||||||
(home-page "https://ipfs.io")
|
(home-page "https://ipfs.io")
|
||||||
|
|
Reference in a new issue