1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add spdlog-1.10.

* gnu/packages/logging.scm (spdlog-1.10): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Greg Hogan
2022-11-07 19:47:42 +00:00
committed by Ludovic Courtès
parent 474070facb
commit 8f8000a95f

View File

@@ -245,6 +245,20 @@ library.")
;; "include/spdlog/fmt/bundled" is under BSD 2 clause license.
(license (list license:expat license:bsd-2))))
(define-public spdlog-1.10
(package
(inherit spdlog)
(version "1.10.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gabime/spdlog")
(commit (string-append "v" version))))
(file-name (git-file-name "spdlog" version))
(sha256
(base32 "02xz017ba9fssm1rp1fcfld7h79awbr6fqai9dxaqp02akp3davk"))))))
(define-public rsyslog
(package
(name "rsyslog")