guix-commits
[Top][All Lists]
Advanced

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

05/42: gnu: Add rust-rlp-0.5.


From: guix-commits
Subject: 05/42: gnu: Add rust-rlp-0.5.
Date: Wed, 19 Jan 2022 08:06:51 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 36d054b2536faf43df68a0b44a8699e33b865ce2
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Wed Jan 19 11:19:12 2022 +0100

    gnu: Add rust-rlp-0.5.
    
    * gnu/packages/crates-io.scm (rust-rlp-0.5): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c9aa03236e..064601d50d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -44274,6 +44274,29 @@ this crate is here to save you the hassle of 
maintaining and testing
 your own implementation.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-rlp-0.5
+  (package
+    (name "rust-rlp")
+    (version "0.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "rlp" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1da7b1hc4czlmsyr7ifs9bz9fv8hi5dw8q14xnmjlydfn2mhi5cr"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-bytes" ,rust-bytes-1)
+        ("rust-rustc-hex" ,rust-rustc-hex-2))))
+    (home-page "https://github.com/paritytech/parity-common";)
+    (synopsis "Recursive-length prefix encoding, decoding, and compression")
+    (description "This package provides Recursive-length prefix encoding,
+decoding, and compression.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-rls-span-0.5
   (package
     (name "rust-rls-span")



reply via email to

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