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>
master
Meiyo Peng 2019-06-18 11:07:50 +08:00 committed by Gábor Boskovits
parent c5c51bda0b
commit 5543d3bb09
No known key found for this signature in database
GPG Key ID: 2506A96CCF630B21
1 changed files with 6 additions and 2 deletions

View File

@ -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))))