gnu: spdlog: Use Gexps.
* gnu/packages/logging.scm (spdlog)[arguments]: Use Gexps. Change-Id: I53485d8adb450f7d0bfc2a2ed8ddee51142fd9a8 Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
a9495366f3
commit
cac593fa82
1 changed files with 5 additions and 4 deletions
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages logging)
|
(define-module (gnu packages logging)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -227,10 +228,10 @@ output in multiple windows in a terminal.")
|
||||||
;; TODO run benchmark. Currently not possible, as adding
|
;; TODO run benchmark. Currently not possible, as adding
|
||||||
;; (gnu packages benchmark) forms a dependency cycle
|
;; (gnu packages benchmark) forms a dependency cycle
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
(list #:configure-flags
|
||||||
(list "-DSPDLOG_BUILD_BENCH=OFF"
|
#~(list "-DSPDLOG_BUILD_BENCH=OFF"
|
||||||
"-DSPDLOG_BUILD_SHARED=ON"
|
"-DSPDLOG_BUILD_SHARED=ON"
|
||||||
"-DSPDLOG_BUILD_TESTS=ON")))
|
"-DSPDLOG_BUILD_TESTS=ON")))
|
||||||
(native-inputs (list catch2-3))
|
(native-inputs (list catch2-3))
|
||||||
(home-page "https://github.com/gabime/spdlog")
|
(home-page "https://github.com/gabime/spdlog")
|
||||||
(synopsis "Fast C++ logging library")
|
(synopsis "Fast C++ logging library")
|
||||||
|
|
Reference in a new issue