summaryrefslogtreecommitdiff
path: root/gnu/packages/code.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2022-01-10 13:40:22 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2022-01-11 20:17:50 +0000
commit9526ce9bf1d581a92154696ce4509e1ed5d7beb5 (patch)
treea9a6ee73a6a0b769907f04ca64fae34ada3ecf7c /gnu/packages/code.scm
parent0c408f8b3ed6a4f5dbce168bc512a0baac5e48c6 (diff)
gnu: global: Remove input labels.
* gnu/packages/code.scm (global)[inputs]: Remove input labels. [arguments]: Adjust.
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r--gnu/packages/code.scm20
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 5bfe719a70c..fcd83b45689 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -139,15 +139,6 @@ highlighting your own code that seemed comprehensible when you wrote it.")
139 (base32 139 (base32
140 "1kaphc3gml89p8dpdgh2is8hj46wj05689kxj0bmh5q759rxk4vg")))) 140 "1kaphc3gml89p8dpdgh2is8hj46wj05689kxj0bmh5q759rxk4vg"))))
141 (build-system gnu-build-system) 141 (build-system gnu-build-system)
142 (inputs
143 `(("bash" ,bash-minimal) ; for wrap-program
144 ("coreutils" ,coreutils)
145 ("ctags" ,universal-ctags)
146 ("libltdl" ,libltdl)
147 ("ncurses" ,ncurses)
148 ("python-pygments" ,python-pygments)
149 ("python-wrapper" ,python-wrapper)
150 ("sqlite" ,sqlite)))
151 (arguments 142 (arguments
152 `(#:configure-flags 143 `(#:configure-flags
153 (list (string-append "--with-ncurses=" 144 (list (string-append "--with-ncurses="
@@ -155,7 +146,7 @@ highlighting your own code that seemed comprehensible when you wrote it.")
155 (string-append "--with-sqlite3=" 146 (string-append "--with-sqlite3="
156 (assoc-ref %build-inputs "sqlite")) 147 (assoc-ref %build-inputs "sqlite"))
157 (string-append "--with-universal-ctags=" 148 (string-append "--with-universal-ctags="
158 (assoc-ref %build-inputs "ctags") "/bin/ctags") 149 (assoc-ref %build-inputs "universal-ctags") "/bin/ctags")
159 (string-append "--sysconfdir=" 150 (string-append "--sysconfdir="
160 (assoc-ref %outputs "out") "/share/gtags") 151 (assoc-ref %outputs "out") "/share/gtags")
161 "--localstatedir=/var" ; This needs to be a writable location. 152 "--localstatedir=/var" ; This needs to be a writable location.
@@ -200,6 +191,15 @@ highlighting your own code that seemed comprehensible when you wrote it.")
200 (string-append vim "/gtags.vim")) 191 (string-append vim "/gtags.vim"))
201 (rename-file (string-append data "/gtags-cscope.vim") 192 (rename-file (string-append data "/gtags-cscope.vim")
202 (string-append vim "/gtags-cscope.vim")))))))) 193 (string-append vim "/gtags-cscope.vim"))))))))
194 (inputs
195 (list bash-minimal ; for wrap-program
196 coreutils
197 universal-ctags
198 libltdl
199 ncurses
200 python-pygments
201 python-wrapper
202 sqlite))
203 (home-page "https://www.gnu.org/software/global/") 203 (home-page "https://www.gnu.org/software/global/")
204 (synopsis "Cross-environment source code tag system") 204 (synopsis "Cross-environment source code tag system")
205 (description 205 (description