gnu: go-ipfs: Update to 0.14.0.
* gnu/packages/ipfs.scm (go-ipfs): Update to 0.14.0. [source]: Change "go-ipfs" to "kubo" in the source link. [arguments]: Rename "go-ipfs" to "kubo". Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									3d4d7fec05
								
							
						
					
					
						commit
						45fbcc452f
					
				
					 1 changed files with 6 additions and 6 deletions
				
			
		| 
						 | 
					@ -221,15 +221,15 @@ written in Go.")
 | 
				
			||||||
(define-public go-ipfs
 | 
					(define-public go-ipfs
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "go-ipfs")
 | 
					    (name "go-ipfs")
 | 
				
			||||||
    (version "0.13.0")
 | 
					    (version "0.14.0")
 | 
				
			||||||
    (source
 | 
					    (source
 | 
				
			||||||
     (origin
 | 
					     (origin
 | 
				
			||||||
       (method url-fetch/tarbomb)
 | 
					       (method url-fetch/tarbomb)
 | 
				
			||||||
       (uri (string-append
 | 
					       (uri (string-append
 | 
				
			||||||
             "https://dist.ipfs.io/go-ipfs/v" version
 | 
					             "https://dist.ipfs.io/kubo/v" version
 | 
				
			||||||
             "/go-ipfs-source.tar.gz"))
 | 
					             "/kubo-source.tar.gz"))
 | 
				
			||||||
       (sha256
 | 
					       (sha256
 | 
				
			||||||
        (base32 "1cx47ais2zn62c0r7lmrpfzia2gjyr61qi8my5wg3pj3dfr0fhkq"))
 | 
					        (base32 "0n7nfiymh6knj3h672gdrb24g9vz9j15x3vn6aml2nk7pv9dsy7p"))
 | 
				
			||||||
       (file-name (string-append name "-" version "-source"))
 | 
					       (file-name (string-append name "-" version "-source"))
 | 
				
			||||||
       (modules '((guix build utils)))
 | 
					       (modules '((guix build utils)))
 | 
				
			||||||
       (snippet '(for-each delete-file-recursively
 | 
					       (snippet '(for-each delete-file-recursively
 | 
				
			||||||
| 
						 | 
					@ -282,8 +282,8 @@ written in Go.")
 | 
				
			||||||
    (build-system go-build-system)
 | 
					    (build-system go-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     (list
 | 
					     (list
 | 
				
			||||||
      #:unpack-path "github.com/ipfs/go-ipfs"
 | 
					      #:unpack-path "github.com/ipfs/kubo"
 | 
				
			||||||
      #:import-path "github.com/ipfs/go-ipfs/cmd/ipfs"
 | 
					      #:import-path "github.com/ipfs/kubo/cmd/ipfs"
 | 
				
			||||||
      #:phases
 | 
					      #:phases
 | 
				
			||||||
      #~(modify-phases %standard-phases
 | 
					      #~(modify-phases %standard-phases
 | 
				
			||||||
          ;; https://github.com/ipfs/kubo/blob/master/docs/command-completion.md
 | 
					          ;; https://github.com/ipfs/kubo/blob/master/docs/command-completion.md
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue