mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: valgrind: Add version 3.18.1.
* gnu/packages/valgrind.scm (valgrind-3.18): New variable.
This commit is contained in:
parent
f4554d28d6
commit
50f7402c6a
1 changed files with 16 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2022 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016, 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
@ -94,3 +94,18 @@ (define-public valgrind/interactive
|
||||||
;; GDB is needed to provide a sane default for `--db-command'.
|
;; GDB is needed to provide a sane default for `--db-command'.
|
||||||
`(("gdb" ,gdb)))
|
`(("gdb" ,gdb)))
|
||||||
(properties '())))
|
(properties '())))
|
||||||
|
|
||||||
|
(define-public valgrind-3.18
|
||||||
|
(package
|
||||||
|
(inherit valgrind/interactive)
|
||||||
|
(version "3.18.1")
|
||||||
|
(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
|
||||||
|
"1xgph509i6adv9w2glviw3xrmlz0dssg8992hbvxsbkp7ahrm180"))
|
||||||
|
(patches (search-patches "valgrind-enable-arm.patch"))))))
|
||||||
|
|
Loading…
Reference in a new issue