>From 8e3714e847e62e8bec86f2f90cf6e12399280391 Mon Sep 17 00:00:00 2001 From: Meiyo Peng Date: Tue, 18 Jun 2019 11:07:50 +0800 Subject: [PATCH] gnu: spdlog: Clarify license. * gnu/packages/logging.scm (spdlog): Clarify license of the bundled fmt library. --- gnu/packages/logging.scm | 8 ++++++-- 1 file 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 ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2019 Gábor Boskovits +;;; Copyright © 2019 Meiyo Peng ;;; ;;; 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)))) -- 2.22.0