diff options
author | Christopher Baines <mail@cbaines.net> | 2021-05-30 21:29:42 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-08-18 16:26:13 +0100 |
commit | 0a9ed7ede8c5148075ee2c8c4b7013cafe1dad51 (patch) | |
tree | 037d086b2777e3114cf986b9c1bc9f2e8ea4c68f /gnu/packages/logging.scm | |
parent | 57c899d03e365a043155271c524b37b6341cb04a (diff) | |
download | guix-0a9ed7ede8c5148075ee2c8c4b7013cafe1dad51.tar guix-0a9ed7ede8c5148075ee2c8c4b7013cafe1dad51.tar.gz |
WIP
Diffstat (limited to 'gnu/packages/logging.scm')
-rw-r--r-- | gnu/packages/logging.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index 6a4975e435..bf2ebde712 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -35,6 +35,7 @@ #:use-module (gnu packages) #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages python) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) @@ -206,7 +207,10 @@ output in multiple windows in a terminal.") (arguments '(#:configure-flags (list "-DSPDLOG_BUILD_BENCH=OFF" - "-DSPDLOG_BUILD_TESTS=ON"))) + "-DSPDLOG_BUILD_TESTS=ON" + "-DSPDLOG_FMT_EXTERNAL=ON"))) + (propagated-inputs + `(("fmt" ,fmt))) ; Required from the pkg-config file (home-page "https://github.com/gabime/spdlog") (synopsis "Fast C++ logging library") (description "Spdlog is a very fast header-only/compiled C++ logging |