guix-patches
[Top][All Lists]
Advanced

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

[bug#52306] [PATCH 5/6] gnu: Add rust-concat-idents-1.


From: jgart
Subject: [bug#52306] [PATCH 5/6] gnu: Add rust-concat-idents-1.
Date: Sun, 5 Dec 2021 16:36:11 -0500

* gnu/packages/crates-io.scm (rust-concat-idents-1): New variable.
---
 gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 41bc459939..a05cbc40ad 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -63297,6 +63297,30 @@ (define-public rust-xi-unicode-0.3
       "Unicode utilities useful for text editing, including a line breaking 
iterator.")
     (license license:asl2.0)))
 
+(define-public rust-concat-idents-1
+  (package
+    (name "rust-concat-idents")
+    (version "1.1.3")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "concat-idents" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32 "0bqdl6vml2ksyz6hc4xlpw3iqaagxs7xn0xinwa51ms80a390vsb"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-quote" ,rust-quote-1) ("rust-syn" ,rust-syn-1))))
+    (home-page "https://github.com/DzenanJupic/concat-idents";)
+    (synopsis
+      "Allows concatenating multiple identifiers and using them everywhere")
+    (description
+      "Allows concatenating multiple identifiers and using them everywhere")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-shell2batch-0.4
   (package
     (name "rust-shell2batch")
-- 
2.34.0






reply via email to

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