diff options
author | Marius Bakke <marius@gnu.org> | 2020-06-27 12:51:34 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-06-27 12:51:34 +0200 |
commit | 25ceae92ea6cddd2306fab9847ba091c17a0ae69 (patch) | |
tree | 76e3006f1985484372a3a0b5dddebf70fdf45470 | |
parent | c007d868686fc2f9bf02a34150d4f0ac72b1f8d2 (diff) |
gnu: valgrind: Update to 3.16.1.
* gnu/packages/valgrind.scm (valgrind): Update to 3.16.1.
-rw-r--r-- | gnu/packages/valgrind.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index c0ea89141e..4036bd461b 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -33,7 +33,9 @@ (define-public valgrind (package (name "valgrind") - (version "3.15.0") + ;; Note: check "guix refresh -l -e '(@ (gnu packages valgrind) valgrind)'" + ;; when updating this package to find which branch it should go to. + (version "3.16.1") (source (origin (method url-fetch) (uri (list (string-append "https://sourceware.org/pub/valgrind" @@ -42,7 +44,7 @@ "/valgrind-" version ".tar.bz2"))) (sha256 (base32 - "1ccawxrni8brcvwhygy12iprkvz409hbr9xkk1bd03gnm2fplz21")) + "1jik19rcd34ip8a5c9nv5wfj8k8maqb8cyclr4xhznq2gcpkl7y9")) (patches (search-patches "valgrind-enable-arm.patch")))) (build-system gnu-build-system) (outputs '("doc" ;16 MB |