diff options
author | Sergey Trofimov <sarg@sarg.org.ru> | 2025-06-10 19:22:05 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-11 20:41:54 +0100 |
commit | 60828ad981b9d0673704f7a57e01fb6269852007 (patch) | |
tree | 15bf760ae36fe02ed920b2307bb3f3ffc4790ce3 | |
parent | af0385fcb4ccf1494c3165b6524fc19cdc029462 (diff) |
gnu: direnv: Don't install go sources.
* gnu/packages/shellutils.scm (direnv): Don't install go sources.
Change-Id: I809511e5995a0b3b89618e90746d1329a47d25ef
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/shellutils.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 6c1bd0dc17..954e8a0c55 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -754,7 +754,8 @@ Latin script and other languages.") "0p6n9zi3p9frj3ndnpdc1cz51hq0nkyjc9b1rqg7967l8vhdr8f6")))) (build-system go-build-system) (arguments - (list #:import-path "github.com/direnv/direnv" + (list #:install-source? #f + #:import-path "github.com/direnv/direnv" #:phases #~(modify-phases %standard-phases (add-after 'install 'install-manpages |