guix-commits
[Top][All Lists]
Advanced

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

07/41: gnu: Add rust-log.


From: guix-commits
Subject: 07/41: gnu: Add rust-log.
Date: Fri, 6 Sep 2019 08:47:26 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 313778655e4a3bd69febb1af486513dc8d25e2f6
Author: Efraim Flashner <address@hidden>
Date:   Thu Sep 5 16:49:00 2019 +0300

    gnu: Add rust-log.
    
    * gnu/packages/crates-io.scm (rust-log): New variable.
---
 gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 29d8da5..ab022ab 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1004,6 +1004,26 @@ the platform that libc is compiled for.")
     (license (list license:expat
                    license:asl2.0))))
 
+(define-public rust-log
+  (package
+    (name "rust-log")
+    (version "0.3.8")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "log" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0nsn28syc49vvjhxcfc8261rd1frhjc0r4bn9v3mqvps3ra7f3w8"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/rust-lang-nursery/log";)
+    (synopsis "Lightweight logging")
+    (description
+     "This package provides a lightweight logging facade for Rust")
+    (license (list license:asl2.0
+                   license:expat))))
+
 (define-public rust-maplit
   (package
     (name "rust-maplit")



reply via email to

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