From: Danny Milosavljevic <dannym@scratchpost.org>
To: 47948@debbugs.gnu.org
Cc: Danny Milosavljevic <dannym@scratchpost.org>
Subject: [bug#47948] [PATCH 35/49] gnu: Add rust-enum-kind.
Date: Thu, 22 Apr 2021 12:21:54 +0200 [thread overview]
Message-ID: <20210422102208.1154-35-dannym@scratchpost.org> (raw)
In-Reply-To: <20210422102208.1154-1-dannym@scratchpost.org>
* gnu/packages/crates-io.scm (rust-enum-kind-0.2): New variable.
---
gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 4de9bc7d3c..bbb70df870 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -51023,3 +51023,34 @@ configuration file and/or environment variables.")
(description
"Visitors for swc ecmascript nodes which works on stable rustc")
(license (list license:asl2.0 license:expat))))
+
+(define-public rust-enum-kind-0.2
+ (package
+ (name "rust-enum-kind")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "enum_kind" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "16gd5cb29lgv3n4nr5fkj7qg9f07h91alpkcjbq1xs2a6pd41fbq"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build?
+ #t
+ #:cargo-inputs
+ (("rust-pmutil" ,rust-pmutil-0.5)
+ ("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-swc-macros-common"
+ ,rust-swc-macros-common-0.3)
+ ("rust-syn" ,rust-syn-1))))
+ (home-page
+ "https://github.com/swc-project/swc.git")
+ (synopsis
+ "Easily manage values related to enum.")
+ (description
+ "Easily manage values related to enum.")
+ (license (list license:asl2.0 license:expat))))
--
2.29.2
next prev parent reply other threads:[~2021-04-22 10:26 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-22 10:10 [bug#47948] [PATCH 00/49] Towards deno Danny Milosavljevic
2021-04-22 10:16 ` [bug#47948] [PATCH 01/49] gnu: rust-byteorder: Update to 1.4.3 Danny Milosavljevic
2021-04-22 10:21 ` Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 02/49] gnu: rust-futures: Update to 0.3.14 Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 03/49] gnu: rust-futures-channel: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 04/49] gnu: rust-futures-core: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 05/49] gnu: rust-futures-executor: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 06/49] gnu: rust-futures-io: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 07/49] gnu: rust-futures-macro: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 08/49] gnu: rust-futures-sink: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 09/49] gnu: rust-futures-task: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 10/49] gnu: rust-futures-util: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 11/49] gnu: rust-serde: Update to 1.0.125 Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 12/49] gnu: rust-serde-derive: " Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 13/49] gnu: rust-serde-json: Update to 1.0.64 Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 14/49] gnu: Add rust-swc-visit-macros Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 15/49] gnu: Add rust-swc-visit Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 16/49] gnu: Add rust-swc-eq-ignore-macros Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 17/49] gnu: Add rust-from-variant Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 18/49] gnu: Add rust-swc-macros-common Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 19/49] gnu: Add rust-ast-node Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 20/49] gnu: Add rust-swc-common Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 21/49] gnu: Add rust-swc-ecma-transforms-typescript Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 22/49] gnu: Add rust-swc-ecma-transforms-react Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 23/49] gnu: Add rust-swc-ecma-loader Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 24/49] gnu: Add rust-swc-ecma-transforms-proposal Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 25/49] gnu: Add rust-swc-ecma-transforms-optimization Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 26/49] gnu: Add rust-swc-ecma-transforms-module Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 27/49] gnu: Add rust-swc-ecma-transforms-macros Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 28/49] gnu: Add rust-ordered-float Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 29/49] gnu: Add rust-swc-ecma-transforms-compat Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 30/49] gnu: Add rust-swc-ecma-utils Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 31/49] gnu: Add rust-swc-ecma-transforms-base Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 32/49] gnu: Add rust-swc-ecma-transforms Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 33/49] gnu: Add rust-swc-ecma-dep-graph Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 34/49] gnu: Add rust-swc-ecma-visit Danny Milosavljevic
2021-04-22 10:21 ` Danny Milosavljevic [this message]
2021-04-22 10:21 ` [bug#47948] [PATCH 36/49] gnu: Add rust-swc-ecma-parser Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 37/49] gnu: Add rust-swc-ecma-codegen-macros Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 38/49] gnu: Add rust-swc-ecma-codegen Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 39/49] gnu: Add rust-swc-atoms Danny Milosavljevic
2021-04-22 10:21 ` [bug#47948] [PATCH 40/49] gnu: Add rust-string-enum Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 41/49] gnu: Add rust-swc-ecma-ast Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 42/49] gnu: Add rust-swc-ecmascript Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 43/49] gnu: Add rust-rand-xorshift Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 44/49] gnu: Add rust-quick-error Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 45/49] gnu: Add rust-proptest Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 46/49] gnu: Add rust-generator Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 47/49] gnu: Add rust-loom Danny Milosavljevic
2021-04-22 10:22 ` [bug#47948] [PATCH 48/49] gnu: Add rust-tokio Danny Milosavljevic
2021-04-23 8:28 ` Nicolas Goaziou
2021-04-22 10:22 ` [bug#47948] [PATCH 49/49] gnu: Add rust-deno-doc Danny Milosavljevic
2022-09-15 8:19 ` [bug#47948] [PATCH 00/49] Towards deno Lars-Dominik Braun
2023-10-12 7:40 ` Daniel Meißner via Guix-patches via
2023-12-14 23:35 ` [bug#47948] Sharlatan Hellseher
2024-08-19 19:01 ` [bug#47948] [PATCH 00/49] Towards deno Sharlatan Hellseher
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210422102208.1154-35-dannym@scratchpost.org \
--to=dannym@scratchpost.org \
--cc=47948@debbugs.gnu.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 external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.