[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: global: Fix ctags creation using pygments.
From: |
guix-commits |
Subject: |
branch master updated: gnu: global: Fix ctags creation using pygments. |
Date: |
Sat, 09 Sep 2023 14:40:48 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 62ea0a0d3a gnu: global: Fix ctags creation using pygments.
62ea0a0d3a is described below
commit 62ea0a0d3a921a25593b2a8db97d744fd2c53c08
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sat Sep 9 21:23:30 2023 +0300
gnu: global: Fix ctags creation using pygments.
* gnu/packages/code.scm (global)[arguments]: Adjust configure-flags to
use a specific python interpreter.
---
gnu/packages/code.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 9cdda2b751..1c21ad475b 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.")
(string-append "--with-universal-ctags="
#$(this-package-input "universal-ctags")
"/bin/ctags")
+ ;; Otherwise this gets overridden in the 'configure phase.
+ (string-append "--with-python-interpreter="
+ #$(this-package-input "python-wrapper")
+ "/bin/python")
(string-append "--sysconfdir="
#$output "/share/gtags")
"--localstatedir=/var" ; This needs to be a writable
location.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: global: Fix ctags creation using pygments.,
guix-commits <=