guix-commits
[Top][All Lists]
Advanced

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

08/12: gnu: Add rust-rt-format-0.3.


From: guix-commits
Subject: 08/12: gnu: Add rust-rt-format-0.3.
Date: Mon, 28 Nov 2022 05:04:28 -0500 (EST)

abcdw pushed a commit to branch master
in repository guix.

commit 8bbc4dc2fb327b74c3a616234b7fcb198f3583e1
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Wed Oct 26 10:59:04 2022 +0200

    gnu: Add rust-rt-format-0.3.
    
    * gnu/packages/crates-io.scm (rust-rt-format-0.3): New variable.
    
    Signed-off-by: Andrew Tropin <andrew@trop.in>
---
 gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e07a8d0cda..8a6e8b10c6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -68276,6 +68276,32 @@ Rust.")
       "High performance inflection transformation library for changing 
properties of words like the case.")
     (license license:expat)))
 
+(define-public rust-rt-format-0.3
+  (package
+    (name "rust-rt-format")
+    (version "0.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "rt-format" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1qjjwh9ny95xck1kp99gi6hfm9glrx54jx8npnj6yccxc7p7q225"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-regex" ,rust-regex-1))))
+    (home-page "https://github.com/vstojkovic/rt-format";)
+    (synopsis "Runtime equivalent of the Rust format! macro")
+    (description "This package provides a runtime equivalent of the Rust
+format! macro. It allows formatting strings like the format! macro, with the
+formatting string and the arguments provided at runtime.  This crate supports
+all the formatting features of the format! macro, except for the fill
+character.")
+    (license license:asl2.0)))
+
 (define-public rust-rustc-workspace-hack-1
   (package
     (name "rust-rustc-workspace-hack")



reply via email to

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