diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-03-02 18:06:54 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2024-03-19 18:48:04 +0800 |
commit | cac593fa8265f9ccd33ff92c98137ad21f73df97 (patch) | |
tree | 973cb8fbb8bb6c3fa5077a7068fab2844107b001 | |
parent | a9495366f3e5383a86fc27ff9b7b82089ca30d8f (diff) | |
download | guix-cac593fa8265f9ccd33ff92c98137ad21f73df97.tar.gz guix-cac593fa8265f9ccd33ff92c98137ad21f73df97.zip |
gnu: spdlog: Use Gexps.
* gnu/packages/logging.scm (spdlog)[arguments]: Use Gexps.
Change-Id: I53485d8adb450f7d0bfc2a2ed8ddee51142fd9a8
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/logging.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index 47e8cd39c2..afd602db42 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -26,6 +26,7 @@ (define-module (gnu packages logging) #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix gexp) #:use-module (guix packages) #:use-module (guix utils) #:use-module (guix download) @@ -227,10 +228,10 @@ output in multiple windows in a terminal.") ;; TODO run benchmark. Currently not possible, as adding ;; (gnu packages benchmark) forms a dependency cycle (arguments - '(#:configure-flags - (list "-DSPDLOG_BUILD_BENCH=OFF" - "-DSPDLOG_BUILD_SHARED=ON" - "-DSPDLOG_BUILD_TESTS=ON"))) + (list #:configure-flags + #~(list "-DSPDLOG_BUILD_BENCH=OFF" + "-DSPDLOG_BUILD_SHARED=ON" + "-DSPDLOG_BUILD_TESTS=ON"))) (native-inputs (list catch2-3)) (home-page "https://github.com/gabime/spdlog") (synopsis "Fast C++ logging library") |