unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Wilko Meyer <w@wmeyer.eu>
To: 70147@debbugs.gnu.org
Cc: Wilko Meyer <w@wmeyer.eu>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#70147] [PATCH 19/42] gnu: Add rust-i18n-embed-0.14.
Date: Tue,  2 Apr 2024 18:22:36 +0200	[thread overview]
Message-ID: <18e4f4687f34bc84267485958a2f03dc3f352081.1712074371.git.w@wmeyer.eu> (raw)
In-Reply-To: <cover.1712074370.git.w@wmeyer.eu>

* gnu/packages/crates-io.scm (rust-i18n-embed-0.14): New variable.

Change-Id: Ia7cd9e83f321b861d097bc6334ebd8bcdefb53e6
---
 gnu/packages/crates-io.scm | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 12a39c6bd8..fb27c48b1f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35521,6 +35521,45 @@ (define-public rust-i18n-embed-fl-0.7
 fluent localization system.")
     (license license:expat)))
 
+(define-public rust-i18n-embed-0.14
+  (package
+    (name "rust-i18n-embed")
+    (version "0.14.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "i18n-embed" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "17251vazz8mybcgic9wffk56acv5i5zsg3x9kvdvjnsgfsams84l"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-arc-swap" ,rust-arc-swap-1)
+                       ("rust-fluent" ,rust-fluent-0.16)
+                       ("rust-fluent-langneg" ,rust-fluent-langneg-0.13)
+                       ("rust-fluent-syntax" ,rust-fluent-syntax-0.11)
+                       ("rust-gettext" ,rust-gettext-0.4)
+                       ("rust-i18n-embed-impl" ,rust-i18n-embed-impl-0.8)
+                       ("rust-intl-memoizer" ,rust-intl-memoizer-0.5)
+                       ("rust-lazy-static" ,rust-lazy-static-1)
+                       ("rust-locale-config" ,rust-locale-config-0.3)
+                       ("rust-log" ,rust-log-0.4)
+                       ("rust-parking-lot" ,rust-parking-lot-0.12)
+                       ("rust-rust-embed" ,rust-rust-embed-8)
+                       ("rust-thiserror" ,rust-thiserror-1)
+                       ("rust-tr" ,rust-tr-0.1)
+                       ("rust-unic-langid" ,rust-unic-langid-0.9)
+                       ("rust-walkdir" ,rust-walkdir-2)
+                       ("rust-web-sys" ,rust-web-sys-0.3))))
+    (home-page
+     "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-embed")
+    (synopsis
+     "Traits and macros to conveniently embed localization assets")
+    (description
+     "Traits and macros to conveniently embed localization assets into your
+application binary or library in order to localize it at runtime.")
+    (license license:expat)))
+
 (define-public rust-jack-0.10
   (package
     (name "rust-jack")
-- 
2.41.0





  parent reply	other threads:[~2024-04-02 16:28 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-02 16:21 [bug#70147] [PATCH 00/42] WIP: Add rage Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 01/42] gnu: Add rust-age-core-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 02/42] gnu: Add rust-age-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 03/42] gnu: Add rust-bcrypt-pbkdf-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 04/42] gnu: Add rust-databake-derive-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 05/42] gnu: Add rust-bech32-0.9 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 06/42] gnu: Add rust-databake-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 07/42] gnu: Add rust-fluent-pseudo-0.3 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 08/42] gnu: Add rust-fluent-langneg-0.13 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 09/42] gnu: Add rust-fluent-bundle-0.15 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 10/42] gnu: Add rust-fluent-0.16 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 11/42] gnu: Add rust-fluent-syntax-0.11 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 12/42] gnu: Add rust-fuser-0.13 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 13/42] gnu: Add rust-fuse-mt-0.6 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 14/42] gnu: Add rust-gettext-0.4 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 15/42] gnu: Add rust-intl-pluralrules-7 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 16/42] gnu: Add rust-intl-memoizer-0.5 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 17/42] gnu: Add rust-io-tee-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 18/42] gnu: Add rust-i18n-embed-fl-0.7 Wilko Meyer
2024-04-02 16:22 ` Wilko Meyer [this message]
2024-04-02 16:22 ` [bug#70147] [PATCH 20/42] gnu: Add rust-i18n-config-0.4 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 21/42] gnu: Add rust-i18n-embed-impl-0.8 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 22/42] gnu: Add rust-page-size-0.5 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 23/42] gnu: Add rust-pinentry-0.5 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 24/42] gnu: Add rust-secrecy-0.8 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 25/42] gnu: Add rust-self-cell-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 26/42] gnu: Add rust-synstructure-0.13 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 27/42] gnu: Add rust-t1ha-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 28/42] gnu: Add rust-tinystr-0.7 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 29/42] gnu: Add rust-tr-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 30/42] gnu: Add rust-type-map-0.4 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 31/42] gnu: Add rust-unic-langid-macros-impl-0.9 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 32/42] gnu: Add rust-unic-langid-macros-0.9 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 33/42] gnu: Add rust-unic-langid-impl-0.9 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 34/42] gnu: Add rust-unic-langid-0.9 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 35/42] gnu: Add rust-yoke-derive-0.7 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 36/42] gnu: Add rust-yoke-0.7 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 37/42] gnu: Add rust-zerovec-derive-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 38/42] gnu: Add rust-zerovec-0.10 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 39/42] gnu: Add rust-zerofrom-derive-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 40/42] gnu: Add rust-zerofrom-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 41/42] gnu: Add rust-wsl-0.1 Wilko Meyer
2024-04-02 16:22 ` [bug#70147] [PATCH 42/42] gnu: Add rage Wilko Meyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=18e4f4687f34bc84267485958a2f03dc3f352081.1712074371.git.w@wmeyer.eu \
    --to=w@wmeyer.eu \
    --cc=70147@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).