guix-patches
[Top][All Lists]
Advanced

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

[bug#57702] [PATCH 1/8] gnu: Add rust-unic-emoji-char-0.9.


From: Maxime Devos
Subject: [bug#57702] [PATCH 1/8] gnu: Add rust-unic-emoji-char-0.9.
Date: Sat, 10 Sep 2022 02:13:11 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.12.0



On 09-09-2022 20:05, VesselWave via Guix-patches via wrote:

---
  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 02f7bc7d4d..a82515f73e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -69234,6 +69234,29 @@ (define-public rust-unic-common-0.9
  Internationalization Crates (UNIC) project.")
      (license (list license:expat license:asl2.0))))

+(define-public rust-unic-emoji-char-0.9
+  (package
+    (name "rust-unic-emoji-char")
+    (version "0.9.0")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "unic-emoji-char" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0ka9fr7s6lv0z43r9xphg9injn35pfxf9g9q18ki0wl9d0g241qb"))))

This contains various binaries (i.e., non-source, I don't mean it in the executable sense), see the .rsv files in <https://github.com/open-i18n/rust-unic/tree/master/unic/emoji/char/tables>

// WARNING: Auto-generated by the `unic-gen` crate.
// WARNING: DO NOT EDIT MANUALLY!


they need to be built from source instead, presumably with this `unic-gen`. To make sure the binaries aren't used, they can be removed in the origin, with snippet ('delete-file-recursively' can be useful). A post-unpack phase can be useful for regenerating these binaries.

Greetings,
Maxime.

Attachment: OpenPGP_0x49E3EE22191725EE.asc
Description: OpenPGP public key

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

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