gnu: benchmark: Update to 1.5.6.

* gnu/packages/benchmark.scm (benchmark): Update to 1.5.6.
[arguments]: Don't return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2021-09-03 20:08:59 +02:00
parent dde56d8377
commit 90b86970eb
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -222,7 +222,7 @@ (define-public multitime
(define-public benchmark
(package
(name "benchmark")
(version "1.5.5")
(version "1.5.6")
(source (origin
(method git-fetch)
(uri (git-reference
@ -231,7 +231,7 @@ (define-public benchmark
(file-name (git-file-name name version))
(sha256
(base32
"1ijv4idcjsyy61dab59ywbx0xdbws44kxgqjr1ylaxzwknh745qf"))))
"030g4d8vpn2442dsap0qw86lsw7xfl36k0x0x9bn0vvm11qvjn8c"))))
(build-system cmake-build-system)
(native-inputs
`(("googletest-source" ,(package-source googletest))
@ -242,8 +242,7 @@ (define-public benchmark
(add-after 'unpack 'unpack-googletest
(lambda* (#:key inputs #:allow-other-keys)
(copy-recursively (assoc-ref inputs "googletest-source")
"googletest")
#t)))))
"googletest"))))))
(home-page "https://github.com/google/benchmark")
(synopsis "Microbenchmark support library")
(description