summaryrefslogtreecommitdiff
path: root/gnu/packages/code.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-09-09 21:23:30 +0300
committerEfraim Flashner <efraim@flashner.co.il>2023-09-09 21:25:08 +0300
commit62ea0a0d3a921a25593b2a8db97d744fd2c53c08 (patch)
tree100f3a0292cf42c64a519f247d0836b4bd28555d /gnu/packages/code.scm
parenta4c35c607cfd7d6b0bad90cfcc46188d489e1754 (diff)
gnu: global: Fix ctags creation using pygments.
* gnu/packages/code.scm (global)[arguments]: Adjust configure-flags to use a specific python interpreter.
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r--gnu/packages/code.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 9cdda2b751a..1c21ad475b4 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -200,6 +200,10 @@ highlighting your own code that seemed comprehensible when you wrote it.")
200 (string-append "--with-universal-ctags=" 200 (string-append "--with-universal-ctags="
201 #$(this-package-input "universal-ctags") 201 #$(this-package-input "universal-ctags")
202 "/bin/ctags") 202 "/bin/ctags")
203 ;; Otherwise this gets overridden in the 'configure phase.
204 (string-append "--with-python-interpreter="
205 #$(this-package-input "python-wrapper")
206 "/bin/python")
203 (string-append "--sysconfdir=" 207 (string-append "--sysconfdir="
204 #$output "/share/gtags") 208 #$output "/share/gtags")
205 "--localstatedir=/var" ; This needs to be a writable location. 209 "--localstatedir=/var" ; This needs to be a writable location.