gnu: gperftools: Update to 2.8.1.
* gnu/packages/cpp.scm (gperftools): Update to 2.8.1. [arguments]: Set '#:parallel-tests? #f'. Co-authored-by: Leo Famulari <leo@famulari.name>master
parent
ac19e83b52
commit
7cd0247eb4
|
@ -512,7 +512,7 @@ maintained anymore.")
|
||||||
(define-public gperftools
|
(define-public gperftools
|
||||||
(package
|
(package
|
||||||
(name "gperftools")
|
(name "gperftools")
|
||||||
(version "2.8")
|
(version "2.8.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -520,9 +520,13 @@ maintained anymore.")
|
||||||
(url "https://github.com/gperftools/gperftools")
|
(url "https://github.com/gperftools/gperftools")
|
||||||
(commit (string-append "gperftools-" version))))
|
(commit (string-append "gperftools-" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1rnc53kaxlljgbpsff906vdsry9jl9gcvcnmxgkprwzxq1wipyd0"))
|
(base32 "19bj2vlsbfwq7m826v2ccqg47kd7cb5vcz1yw2x0v5qzhaxbakk1"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
;; The tests are flaky when run in parallel. For more info:
|
||||||
|
;; https://bugs.gnu.org/46562
|
||||||
|
'(#:parallel-tests? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
|
Reference in New Issue