mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: valgrind: Add 3.15.0.
* gnu/packages/valgrind.scm (valgrind-3.15): New variable.
This commit is contained in:
parent
605815023c
commit
5502fbd7fd
1 changed files with 15 additions and 0 deletions
|
@ -84,3 +84,18 @@ (define-public valgrind
|
|||
;; Building VEX on mips64el-linux fails with "opcode not supported on this
|
||||
;; processor: mips3".
|
||||
(supported-systems (delete "mips64el-linux" %supported-systems))))
|
||||
|
||||
(define-public valgrind-3.15
|
||||
(package
|
||||
(inherit valgrind)
|
||||
(version "3.15.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (list (string-append "http://www.valgrind.org/downloads"
|
||||
"/valgrind-" version ".tar.bz2")
|
||||
(string-append "ftp://sourceware.org/pub/valgrind"
|
||||
"/valgrind-" version ".tar.bz2")))
|
||||
(sha256
|
||||
(base32
|
||||
"1ccawxrni8brcvwhygy12iprkvz409hbr9xkk1bd03gnm2fplz21"))
|
||||
(patches (search-patches "valgrind-enable-arm.patch"))))))
|
||||
|
|
Loading…
Reference in a new issue