diff options
author | Leo Famulari <leo@famulari.name> | 2018-11-13 11:25:54 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-11-13 11:28:23 -0500 |
commit | 978d59737acaadbb0d2aa02ed071bb5d3f555973 (patch) | |
tree | 2da1e661a58c9936409ba3b44695f662523f5939 /gnu | |
parent | 021bf6af182099dbb0178e19a2f461aeb0eef686 (diff) | |
download | patches-978d59737acaadbb0d2aa02ed071bb5d3f555973.tar patches-978d59737acaadbb0d2aa02ed071bb5d3f555973.tar.gz |
gnu: direnv: Build with Go 1.9.
* gnu/packages/shellutils.scm (direnv)[native-inputs]: Remove go.
[inputs]: Add go-1.9.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/shellutils.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 3020fdd210..0978300c9b 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -116,9 +116,10 @@ are already there.") '(#: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 |