mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: global: Remove input labels.
* gnu/packages/code.scm (global)[inputs]: Remove input labels. [arguments]: Adjust.
This commit is contained in:
parent
0c408f8b3e
commit
9526ce9bf1
1 changed files with 10 additions and 10 deletions
|
@ -139,15 +139,6 @@ (define-public global ; a global variable
|
|||
(base32
|
||||
"1kaphc3gml89p8dpdgh2is8hj46wj05689kxj0bmh5q759rxk4vg"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("coreutils" ,coreutils)
|
||||
("ctags" ,universal-ctags)
|
||||
("libltdl" ,libltdl)
|
||||
("ncurses" ,ncurses)
|
||||
("python-pygments" ,python-pygments)
|
||||
("python-wrapper" ,python-wrapper)
|
||||
("sqlite" ,sqlite)))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append "--with-ncurses="
|
||||
|
@ -155,7 +146,7 @@ (define-public global ; a global variable
|
|||
(string-append "--with-sqlite3="
|
||||
(assoc-ref %build-inputs "sqlite"))
|
||||
(string-append "--with-universal-ctags="
|
||||
(assoc-ref %build-inputs "ctags") "/bin/ctags")
|
||||
(assoc-ref %build-inputs "universal-ctags") "/bin/ctags")
|
||||
(string-append "--sysconfdir="
|
||||
(assoc-ref %outputs "out") "/share/gtags")
|
||||
"--localstatedir=/var" ; This needs to be a writable location.
|
||||
|
@ -200,6 +191,15 @@ (define-public global ; a global variable
|
|||
(string-append vim "/gtags.vim"))
|
||||
(rename-file (string-append data "/gtags-cscope.vim")
|
||||
(string-append vim "/gtags-cscope.vim"))))))))
|
||||
(inputs
|
||||
(list bash-minimal ; for wrap-program
|
||||
coreutils
|
||||
universal-ctags
|
||||
libltdl
|
||||
ncurses
|
||||
python-pygments
|
||||
python-wrapper
|
||||
sqlite))
|
||||
(home-page "https://www.gnu.org/software/global/")
|
||||
(synopsis "Cross-environment source code tag system")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue