gnu: go-github-com-mitchellh-go-homedir: Enable tests.

* gnu/packages/golang.scm (go-github-com-mitchellh-go-homedir)
[arguments]: Enable tests. Add custom phase to set HOME environment
variable.
This commit is contained in:
Efraim Flashner 2020-05-25 21:18:17 +03:00
parent c748f5262f
commit 369aab196d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2356,9 +2356,13 @@ (define-public go-github-com-mitchellh-go-homedir
"0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1"))))
(build-system go-build-system)
(arguments
(quote (#:import-path "github.com/mitchellh/go-homedir"
;; TODO: Tests fail because it tries to access home.
#:tests? #f)))
`(#:import-path "github.com/mitchellh/go-homedir"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-home-directory
(lambda _
(setenv "HOME" "/")
#t)))))
(home-page "https://github.com/mitchellh/go-homedir")
(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