mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add rust-tabled-derive-0.7.
* gnu/packages/crates-io.scm (rust-tabled-derive-0.7): New variable. (rust-tabled-derive-0.6): Inherit from rust-tabled-derive-0.7. Change-Id: I48a6066da9d9f0f8d7eb0c8b15f239ebd9d78159
This commit is contained in:
parent
c35a88f1a1
commit
828c6140cf
1 changed files with 27 additions and 6 deletions
|
@ -79495,8 +79495,34 @@ (define-public rust-tabled-0.14
|
|||
Rust @code{struct}s and @code{enum}s.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-tabled-derive-0.7
|
||||
(package
|
||||
(name "rust-tabled-derive")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "tabled_derive" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "05sbyjc8warywzldz1bn8v4cyd2nc5ix5nhw6wx6apby6ycqy4sc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #f
|
||||
#:cargo-inputs (("rust-heck" ,rust-heck-0.4)
|
||||
("rust-proc-macro-error" ,rust-proc-macro-error-1)
|
||||
("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/zhiburt/tabled")
|
||||
(synopsis "Derive macros which are used by the Tabled crate")
|
||||
(description
|
||||
"Provides Derive macros which are used by Tabled crate.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-tabled-derive-0.6
|
||||
(package
|
||||
(inherit rust-tabled-derive-0.7)
|
||||
(name "rust-tabled-derive")
|
||||
(version "0.6.0")
|
||||
(source
|
||||
|
@ -79512,12 +79538,7 @@ (define-public rust-tabled-derive-0.6
|
|||
("rust-proc-macro-error" ,rust-proc-macro-error-1)
|
||||
("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/zhiburt/tabled")
|
||||
(synopsis "Derive macros which is used by tabled crate")
|
||||
(description
|
||||
"This package provides derive macros which is used by tabled crate.")
|
||||
(license license:expat)))
|
||||
("rust-syn" ,rust-syn-1))))))
|
||||
|
||||
(define-public rust-tabwriter-1
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue