me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-mitchellh-go-homedir: Update version string.

The commit was actually at the 1.0.0 tag.

* gnu/packages/golang.scm (go-github-com-mitchellh-go-homedir)[version]:
Update to proper version.
[source]: Update commit for git-fetch.
master
Efraim Flashner 2020-05-25 21:12:17 +03:00
parent cbc139a791
commit 2de39dc723
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 24 deletions

View File

@ -2341,29 +2341,27 @@ statistics for wrapped connections.")
(license license:expat)))) (license license:expat))))
(define-public go-github-com-mitchellh-go-homedir (define-public go-github-com-mitchellh-go-homedir
(let ((commit "ae18d6b8b3205b561c79e8e5f69bff09736185f4") (package
(revision "0")) (name "go-github-com-mitchellh-go-homedir")
(package (version "1.0.0")
(name "go-github-com-mitchellh-go-homedir") (source
(version (git-version "1.0.0" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/mitchellh/go-homedir.git")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/mitchellh/go-homedir.git") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq"))))
(base32 (build-system go-build-system)
"0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq")))) (arguments
(build-system go-build-system) (quote (#:import-path "github.com/mitchellh/go-homedir"
(arguments ;; TODO: Tests fail because it tries to access home.
(quote (#:import-path "github.com/mitchellh/go-homedir" #:tests? #f)))
;; TODO: Tests fail because it tries to access home. (home-page "https://github.com/mitchellh/go-homedir")
#:tests? #f))) (synopsis "Go library for detecting and expanding the user's home directory without cgo")
(home-page "https://github.com/mitchellh/go-homedir") (description "This is a Go library for detecting the user's home
(synopsis "Go library for detecting and expanding the user's home directory without cgo")
(description "This is a Go library for detecting the user's home
directory without the use of @command{cgo}, so the library can be used in directory without the use of @command{cgo}, so the library can be used in
cross-compilation environments. cross-compilation environments.
@ -2377,7 +2375,7 @@ package cannot cross compile. But 99% of the time the use for
@command{os/user} is just to retrieve the home directory, which we can do for @command{os/user} is just to retrieve the home directory, which we can do for
the current user without cgo. This library does that, enabling the current user without cgo. This library does that, enabling
cross-compilation.") cross-compilation.")
(license license:expat)))) (license license:expat)))
(define-public go-github-com-multiformats-go-multiaddr (define-public go-github-com-multiformats-go-multiaddr
(let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb") (let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb")