unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Murilo via Guix-patches via <guix-patches@gnu.org>
To: 71278@debbugs.gnu.org
Cc: Murilo <murilo@disroot.org>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#71278] [PATCH 23/44] gnu: Add rust-jaq-std-1.
Date: Thu, 30 May 2024 12:17:50 -0300	[thread overview]
Message-ID: <83785a2e7f842e8bc84ba114519e6c153b1ec1f5.1717072141.git.murilo@disroot.org> (raw)
In-Reply-To: <cover.1717072140.git.murilo@disroot.org>

* gnu/packages/crates-io.scm (rust-jaq-std-1): New variable.

Change-Id: I0ff5fb9db13556d46beea522a6735f0f055d67a9
---
 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 7f63452763..71171b6030 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35905,6 +35905,28 @@ (define-public rust-jaq-parse-1
     (description "Parser for the jaq language")
     (license license:expat)))
 
+(define-public rust-jaq-std-1
+  (package
+    (name "rust-jaq-std")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "jaq-std" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0ffs5imcyp4r6kwx24npkbkxgk7aq5dc6pph1v5w1z9xbiz7703d"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-jaq-syn" ,rust-jaq-syn-1)
+                       ("rust-jaq-parse" ,rust-jaq-parse-1)
+                       ("rust-bincode" ,rust-bincode-1))))
+    (home-page "https://github.com/01mf02/jaq")
+    (synopsis "Standard library for jaq")
+    (description "Standard library for jaq")
+    (license license:expat)))
+
 (define-public rust-java-locator-0.1
   (package
     (name "rust-java-locator")
-- 
2.41.0





  parent reply	other threads:[~2024-05-30 16:51 UTC|newest]

Thread overview: 90+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-30 13:02 [bug#71278] [PATCH rust-team 00/44] Add eww Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 01/44] gnu: " Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 02/44] gnu: Add rust-cached-0.48 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 03/44] gnu: Add rust-codemap-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 04/44] gnu: Add rust-hifijson-0.2 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 05/44] gnu: Add rust-lasso-0.7 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 06/44] gnu: Add rust-notifier-host-0.6 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 07/44] gnu: Add rust-simplexpr-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 08/44] gnu: Add rust-simple-signal-1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 09/44] gnu: Add rust-yuck-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 10/44] gnu: Add rust-cached-proc-macro-0.19 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 11/44] gnu: Add rust-cached-proc-macro-types-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 12/44] gnu: Add rust-dbusmenu-glib-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 13/44] gnu: Add rust-dbusmenu-glib-sys-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 14/44] gnu: Add rust-dbusmenu-gtk3-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 15/44] gnu: Add rust-dbusmenu-gtk3-sys-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 16/44] gnu: Add rust-extend-1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 17/44] gnu: Add rust-eww-shared-util-0.1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 18/44] gnu: Add rust-grass-0.13 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 19/44] gnu: Add rust-grass-compiler-0.13 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 20/44] gnu: Add rust-jaq-core-1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 21/44] gnu: Add rust-jaq-interpret-1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 22/44] gnu: Add rust-jaq-parse-1 Murilo via Guix-patches via
2024-05-30 15:17 ` Murilo via Guix-patches via [this message]
2024-05-30 15:17 ` [bug#71278] [PATCH 24/44] gnu: Add rust-jaq-syn-1 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 25/44] gnu: Add rust-gdkx11-0.17 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 26/44] gnu: Add rust-gdkx11-sys-0.17 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 27/44] gnu: Add rust-gtk-layer-shell-0.6 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 28/44] gnu: Add rust-gtk-layer-shell-sys-0.6 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 29/44] gnu: Add rust-gdk-0.17 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 30/44] gnu: Add rust-gdk-sys-0.17 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 31/44] gnu: Add rust-gtk-0.17 Murilo via Guix-patches via
2024-05-30 15:17 ` [bug#71278] [PATCH 32/44] gnu: Add rust-gtk-sys-0.17 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 33/44] gnu: Add rust-gtk3-macros-0.17 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 34/44] gnu: Add rust-atk-0.17 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 35/44] gnu: Add rust-atk-sys-0.17 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 36/44] gnu: rust-clap-complete-4: Update to 4.5.1 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 37/44] gnu: rust-ref-cast-1: Update to 1.0.22 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 38/44] gnu: rust-ref-cast-impl-1: " Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 39/44] gnu: rust-darling-0.14: Update to 0.14.4 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 40/44] gnu: rust-darling-core-0.14: " Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 41/44] gnu: rust-darling-macro-0.14: " Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 42/44] gnu: Add rust-slotmap-0.4 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 43/44] gnu: Add rust-deepsize-0.2 Murilo via Guix-patches via
2024-05-30 15:18 ` [bug#71278] [PATCH 44/44] gnu: Add rust-deepsize-derive-0.1 Murilo via Guix-patches via
2024-05-31 12:37 ` [bug#71278] [PATCH rust-team v2 00/44] Add eww Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 01/44] gnu: " Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 02/44] gnu: Add rust-cached-0.48 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 03/44] gnu: Add rust-codemap-0.1 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 04/44] gnu: Add rust-hifijson-0.2 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 05/44] gnu: Add rust-lasso-0.7 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 06/44] gnu: Add rust-notifier-host-0.6 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 07/44] gnu: Add rust-simplexpr-0.1 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 08/44] gnu: Add rust-simple-signal-1 Murilo via Guix-patches via
2024-05-31 12:37   ` [bug#71278] [PATCH v2 09/44] gnu: Add rust-yuck-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 10/44] gnu: Add rust-cached-proc-macro-0.19 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 11/44] gnu: Add rust-cached-proc-macro-types-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 12/44] gnu: Add rust-dbusmenu-glib-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 13/44] gnu: Add rust-dbusmenu-glib-sys-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 14/44] gnu: Add rust-dbusmenu-gtk3-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 15/44] gnu: Add rust-dbusmenu-gtk3-sys-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 16/44] gnu: Add rust-extend-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 17/44] gnu: Add rust-eww-shared-util-0.1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 18/44] gnu: Add rust-grass-0.13 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 19/44] gnu: Add rust-grass-compiler-0.13 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 20/44] gnu: Add rust-jaq-core-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 21/44] gnu: Add rust-jaq-interpret-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 22/44] gnu: Add rust-jaq-parse-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 23/44] gnu: Add rust-jaq-std-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 24/44] gnu: Add rust-jaq-syn-1 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 25/44] gnu: Add rust-gdkx11-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 26/44] gnu: Add rust-gdkx11-sys-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 27/44] gnu: Add rust-gtk-layer-shell-0.6 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 28/44] gnu: Add rust-gtk-layer-shell-sys-0.6 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 29/44] gnu: Add rust-gdk-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 30/44] gnu: Add rust-gdk-sys-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 31/44] gnu: Add rust-gtk-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 32/44] gnu: Add rust-gtk-sys-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 33/44] gnu: Add rust-gtk3-macros-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 34/44] gnu: Add rust-atk-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 35/44] gnu: Add rust-atk-sys-0.17 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 36/44] gnu: rust-clap-complete-4: Update to 4.5.2 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 37/44] gnu: rust-ref-cast-1: Update to 1.0.23 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 38/44] gnu: rust-ref-cast-impl-1: " Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 39/44] gnu: rust-darling-0.14: Update to 0.14.4 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 40/44] gnu: rust-darling-core-0.14: " Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 41/44] gnu: rust-darling-macro-0.14: " Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 42/44] gnu: Add rust-slotmap-0.4 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 43/44] gnu: Add rust-deepsize-0.2 Murilo via Guix-patches via
2024-05-31 12:38   ` [bug#71278] [PATCH v2 44/44] gnu: Add rust-deepsize-derive-0.1 Murilo via Guix-patches via

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=83785a2e7f842e8bc84ba114519e6c153b1ec1f5.1717072141.git.murilo@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=71278@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=murilo@disroot.org \
    /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).