This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6f6dc2286c gnu: valgrind/interactive: Fix shebangs by adding python as
input.
6f6dc2286c is described below
commit 6f6dc2286caa4577b1db327503f42815fcd2005f
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Thu May 14 12:01:02 2026 +0200
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 <[email protected]>
---
gnu/packages/valgrind.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm
index 162ae1d278..94f0a34b02 100644
--- a/gnu/packages/valgrind.scm
+++ b/gnu/packages/valgrind.scm
@@ -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 '())))