guix-commits
[Top][All Lists]
Advanced

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

13/43: gnu: Add rust-hex.


From: guix-commits
Subject: 13/43: gnu: Add rust-hex.
Date: Mon, 12 Aug 2019 05:02:11 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 1d5c422c4aba701c4c2bf533d652b3947cfc05eb
Author: Efraim Flashner <address@hidden>
Date:   Sun Aug 4 13:49:50 2019 +0300

    gnu: Add rust-hex.
    
    * gnu/packages/crates-io.scm (rust-hex): 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 dedc0b8..da4c517 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -253,6 +253,26 @@ featuring zero allocations, composability, and 
iterator-like interfaces.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-hex
+  (package
+    (name "rust-hex")
+    (version "0.3.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "hex" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0xsdcjiik5j750j67zk42qdnmm4ahirk3gmkmcqgq7qls2jjcl40"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/KokaKiwi/rust-hex";)
+    (synopsis "Encode and decode data to/from hexadecimals")
+    (description "This crate allows for encoding and decoding data into/from
+hexadecimal representation.")
+    (license (list license:asl2.0
+                   license:expat))))
+
 (define-public rust-proc-macro2
   (package
     (name "rust-proc-macro2")



reply via email to

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