guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add spdlog@1.7.


From: guix-commits
Subject: 01/02: gnu: Add spdlog@1.7.
Date: Tue, 22 Dec 2020 06:28:39 -0500 (EST)

jonsger pushed a commit to branch master
in repository guix.

commit d7d5bca4f8968932cbe8b9bf584e68c76a549d39
Author: Jonathan Brielmaier <jonathan.brielmaier@web.de>
AuthorDate: Tue Dec 22 12:25:50 2020 +0100

    gnu: Add spdlog@1.7.
    
    Required by waybar.
    
    * gnu/packages/logging.scm (spdlog-1.7): New variable.
---
 gnu/packages/logging.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index 39217e1..87283f3 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -215,3 +215,19 @@ 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))))
+
+(define-public spdlog-1.7
+  (package
+    (inherit spdlog)
+    (name "spdlog")
+    (version "1.7.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 name version))
+       (sha256
+        (base32
+         "1ryaa22ppj60461hcdb8nk7jwj84arp4iw4lyw594py92g4vnx3j"))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]