gnu: direnv: Build with Go 1.9.

* gnu/packages/shellutils.scm (direnv)[native-inputs]: Remove go.
[inputs]: Add go-1.9.
This commit is contained in:
Leo Famulari 2018-11-13 11:25:54 -05:00
parent 021bf6af18
commit 978d59737a
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -116,9 +116,10 @@ (define-public direnv
'(#:test-target "test"
#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
#:phases (modify-phases %standard-phases (delete 'configure))))
(inputs
`(("go" ,go-1.9)))
(native-inputs
`(("go" ,go)
("which" ,which)))
`(("which" ,which)))
(home-page "https://direnv.net/")
(synopsis "Environment switcher for the shell")
(description