guix-patches
[Top][All Lists]
Advanced

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

[bug#49451] [PATCH 02/20] gnu: Add rust-case


From: southerntofu
Subject: [bug#49451] [PATCH 02/20] gnu: Add rust-case
Date: Sun, 11 Jul 2021 17:28:39 -0400

---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5ed2ff470e..c5605fa82c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7255,6 +7255,28 @@ supported by Cargo.")
 used in argon2rs' bench suite.")
     (license license:wtfpl2)))
 
+(define-public rust-case-0.1
+  (package
+    (name "rust-case")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "case" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/SkylerLipthay/case";)
+    (synopsis "Set of letter case string helpers")
+    (description
+      "This package provides a set of letter case string helpers")
+    (license license:expat)))
+
 (define-public rust-cassowary-0.3
   (package
     (name "rust-cassowary")
-- 
2.30.2






reply via email to

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