1
0
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:
Hugo Buddelmeijer
2026-05-14 12:01:02 +02:00
committed by Nguyễn Gia Phong
parent b48412b52f
commit 6f6dc2286c
+5 -2
View File
@@ -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 '())))