guix-patches
[Top][All Lists]
Advanced

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

[bug#64898] [PATCH 7/9] gnu: Added rust-unidecode-0.3.


From: Wilko Meyer
Subject: [bug#64898] [PATCH 7/9] gnu: Added rust-unidecode-0.3.
Date: Thu, 27 Jul 2023 16:31:11 +0200

* added rust-unidecode-0.3 to crates-io.scm
---
 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 3e3cdebe70..7a7d6b08d8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -69065,6 +69065,26 @@ (define-public rust-ungrammar-1
       "This package provides a DSL for describing concrete syntax trees.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-unidecode-0.3
+  (package
+    (name "rust-unidecode")
+    (version "0.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "unidecode" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1p0sm8j9223kw3iincv60s746s88k09xcaqf8nkx3w83isfv2as0"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t))
+    (home-page "https://github.com/chowdhurya/rust-unidecode/";)
+    (synopsis "Provides pure ASCII transliterations of Unicode strings.")
+    (description
+     "This package provides pure ASCII transliterations of Unicode strings.")
+    (license license:bsd-3)))
+
 (define-public rust-unic-char-property-0.9
   (package
     (name "rust-unic-char-property")
-- 
2.40.1






reply via email to

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