mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-06-17 16:34:05 +02:00
gnu: valgrind/interactive: Fix shebangs by adding python as input.
* gnu/packages/valgrind.scm (valgrind/interactive): Fix shebangs. [inputs]: Add python. Change-Id: Idc8590bfe5ed529046cb41f365de759c1c07effd Merges: https://codeberg.org/guix/guix/pulls/8611 Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
This commit is contained in:
committed by
Nguyễn Gia Phong
parent
b48412b52f
commit
6f6dc2286c
@@ -36,7 +36,8 @@
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages gdb)
|
||||
#:use-module (gnu packages perl))
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages python))
|
||||
|
||||
(define-public valgrind/pinned
|
||||
(package
|
||||
@@ -111,5 +112,7 @@ also use Valgrind to build new tools.")
|
||||
(package/inherit valgrind
|
||||
(inputs
|
||||
;; GDB is needed to provide a sane default for `--db-command'.
|
||||
(list gdb `(,(canonical-package (libc-for-target)) "debug")))
|
||||
(list gdb
|
||||
`(,(canonical-package (libc-for-target)) "debug")
|
||||
python)) ;for cg_* shebangs
|
||||
(properties '())))
|
||||
|
||||
Reference in New Issue
Block a user