diff options
author | Meiyo Peng <meiyo@riseup.net> | 2019-06-18 11:07:50 +0800 |
---|---|---|
committer | Gábor Boskovits <boskovits@gmail.com> | 2019-06-20 05:38:58 +0200 |
commit | 5543d3bb09e65107afe4f839c97285bb2106b70e (patch) | |
tree | 06155ef7e0ac99b80dd8c2a9343310fbe1f7b265 | |
parent | c5c51bda0b8c087858183190a2aebe0c7ca811d1 (diff) | |
download | patches-5543d3bb09e65107afe4f839c97285bb2106b70e.tar patches-5543d3bb09e65107afe4f839c97285bb2106b70e.tar.gz |
gnu: spdlog: Clarify license.
* gnu/packages/logging.scm (spdlog): Clarify license of the bundled fmt
library.
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
-rw-r--r-- | gnu/packages/logging.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index e936733136..24a47567d0 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com> +;;; Copyright © 2019 Meiyo Peng <meiyo@riseup.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -205,5 +206,8 @@ windows in a terminal, colorize, filter and merge.") (list "-DSPDLOG_BUILD_BENCH=OFF"))) (home-page "https://github.com/gabime/spdlog") (synopsis "Fast C++ logging library") - (description "Spdlog is a very fast header-only/compiled C++ logging library.") - (license license:expat))) ; MIT license + (description "Spdlog is a very fast header-only/compiled C++ logging +library.") + ;; spdlog is under Expat license, but the bundled fmt library in + ;; "include/spdlog/fmt/bundled" is under BSD 2 clause license. + (license (list license:expat license:bsd-2)))) |