diff options
author | Zheng Junjie <z572@z572.online> | 2025-04-29 23:39:36 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-05-04 17:58:56 +0800 |
commit | 3e16c0af80fc279dc4d42c9c1e837cea19dde8a5 (patch) | |
tree | 45f9df062e99997ccf6efc794f686cac6dcbcc00 | |
parent | 81fab24fb737b95ffd0603dfe43461e3f6ee1971 (diff) |
gnu: valgrind: update to 3.25.0.
* gnu/packages/valgrind.scm (valgrind-next): New variable.
(valgrind/interactive): Inherit from it.
Change-Id: If6e1f50e5574caa5fae61892afcc2b4e6ef7baa3
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/valgrind.scm | 32 |
1 files changed, 25 insertions, 7 deletions
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index 1bf4975667..1cdbcf1689 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -37,7 +37,7 @@ #:use-module (gnu packages gdb) #:use-module (gnu packages perl)) -(define-public valgrind +(define valgrind/pinned (package (name "valgrind") (version "3.22.0") @@ -93,10 +93,28 @@ also use Valgrind to build new tools.") ;; Hide this variant so end users get the "interactive" Valgrind below. (properties '((hidden? . #t))))) +(define-public valgrind-next + (package + (inherit valgrind/pinned) + (version "3.25.0") + (source (origin + (method url-fetch) + (uri (list (string-append "https://sourceware.org/pub/valgrind" + "/valgrind-" version ".tar.bz2") + (string-append "ftp://sourceware.org/pub/valgrind" + "/valgrind-" version ".tar.bz2"))) + (sha256 + (base32 + "1k3fb1vyx1b3vvwyql0ckg9n2lyw9dilbrhw1kcw0r3b3lln0pr9")))) + (supported-systems (fold delete %supported-systems + '("i586-gnu" "x86_64-gnu" + "armhf-linux"))))) + +(define-public valgrind valgrind/pinned) + (define-public valgrind/interactive - (package/inherit - valgrind - (inputs - ;; GDB is needed to provide a sane default for `--db-command'. - (list gdb `(,(canonical-package (libc-for-target)) "debug"))) - (properties '()))) + (package/inherit valgrind-next + (inputs + ;; GDB is needed to provide a sane default for `--db-command'. + (list gdb `(,(canonical-package (libc-for-target)) "debug"))) + (properties '()))) |