diff options
author | Herman Rimm <[email protected]> | 2024-12-25 21:56:07 +0100 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:19:22 +0200 |
commit | 93acb34c7371afd4b3bd6a864d480ed3abdf5a81 (patch) | |
tree | 20da706fe57874f99c5c54281e256de69b451de1 | |
parent | 7420232c530f0d6a678028baf1cb0edad12f27d8 (diff) |
gnu: rust-indoc-impl-0.3: Do not inherit.
* gnu/packages/crates-io.scm (rust-indoc-impl-0.3): Do not inherit.
[home-page, license]: Add.
[arguments]: Build.
Change-Id: Ie57baea4c388a32e00443c39abe80119786b14f8
Signed-off-by: Efraim Flashner <[email protected]>
-rw-r--r-- | gnu/packages/crates-io.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ad8e5ee47c..c79705a815 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -37295,7 +37295,6 @@ at compile time so the leftmost non-space character is in the first column.") (define-public rust-indoc-impl-0.3 (package - (inherit rust-indoc-0.3) (name "rust-indoc-impl") (version "0.3.6") (source @@ -37307,17 +37306,18 @@ at compile time so the leftmost non-space character is in the first column.") (base32 "1w58yg249kmzsn75kcj34qaxqh839l1hsaj3bzggy3q03wb6s16f")))) (build-system cargo-build-system) (arguments - `(#:skip-build? #t - #:cargo-inputs + `(#:cargo-inputs (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5) ("rust-proc-macro2" ,rust-proc-macro2-1) ("rust-quote" ,rust-quote-1) ("rust-syn" ,rust-syn-1) ("rust-unindent" ,rust-unindent-0.1)))) + (home-page "https://github.com/dtolnay/indoc") (synopsis "Macros for @code{rust-indoc}") (description "This package provides macros for use with the @code{rust-indoc} -package. It is obsolete for indoc versions > 1."))) +package. It is obsolete for indoc versions > 1.") + (license (list license:expat license:asl2.0)))) (define-public rust-infer-0.15 (package |