gnu: Add googlebenchmark.

* gnu/packages/check.scm (googlebenchmark): New variable.
This commit is contained in:
Ludovic Courtès 2021-07-29 16:33:03 +02:00 committed by Ludovic Courtès
parent 18d04fef0f
commit 646b5ad983
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -26,7 +26,7 @@
;;; Copyright © 2017 Nikita <nikita@n0.is>
;;; Copyright © 2015, 2017, 2018, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017, 2018, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
;;; Copyright © 2019, 2021 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
@ -712,6 +712,33 @@ (define-public googletest-1.8
(base32
"0270msj6n7mggh4xqqjp54kswbl7mkcc8px1p5dqdpmw5ngh9fzk"))))))
(define-public googlebenchmark
(package
(name "googlebenchmark")
(version "1.5.3")
(home-page "https://github.com/google/benchmark")
(source (origin
(method git-fetch)
(uri (git-reference (url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name "google-benchmark" version))
(sha256
(base32
"1hls0aqqj5cfldn9jfpvzjhpxkhrydrz9crp477rwllwjsybdxw7"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags (list "-DBUILD_SHARED_LIBS=ON"
(string-append
"-DGOOGLETEST_PATH="
(assoc-ref %build-inputs "googletest")))))
(inputs
`(("googletest" ,(package-source googletest))))
(synopsis "C++ library to support the benchmarking of functions")
(description
"The googlebenchmark C++ library support the benchmarking of functions,
similar to unit tests.")
(license license:asl2.0)))
(define-public cpputest
(package
(name "cpputest")