mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add rust-phf-macros-0.10.
* gnu/packages/crates-io.scm (rust-phf-macros-0.10): New variable. (rust-phf-macros-0.10): Inherit from above.
This commit is contained in:
parent
7f6f8f8aff
commit
8c0ce2766a
1 changed files with 30 additions and 7 deletions
|
@ -36683,8 +36683,37 @@ (define-public rust-phf-generator-0.7
|
|||
(description "PHF generation logic")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-phf-macros-0.10
|
||||
(package
|
||||
(name "rust-phf-macros")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "phf_macros" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1q5ljwvb10dx188i6jxzckqfimjw5pm2p4kkvmhg2q6m9lcg7zaq"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-phf-generator" ,rust-phf-generator-0.10)
|
||||
("rust-phf-shared" ,rust-phf-shared-0.10)
|
||||
("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-unicase" ,rust-unicase-2))))
|
||||
(home-page "https://github.com/sfackler/rust-phf")
|
||||
(synopsis "Macros to generate types in the phf crate")
|
||||
(description
|
||||
"This package contains macros to generate types in the phf crate.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-phf-macros-0.8
|
||||
(package
|
||||
(inherit rust-phf-macros-0.10)
|
||||
(name "rust-phf-macros")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
|
@ -36696,7 +36725,6 @@ (define-public rust-phf-macros-0.8
|
|||
(sha256
|
||||
(base32
|
||||
"170qm6yqn6b9mjlwb2xmm3iad9d5nzwgfawfwy7zr7s2zwcdwvvz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -36705,12 +36733,7 @@ (define-public rust-phf-macros-0.8
|
|||
("rust-phf-shared" ,rust-phf-shared-0.8)
|
||||
("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-syn" ,rust-syn-1)
|
||||
("rust-quote" ,rust-quote-1))))
|
||||
(home-page "https://github.com/sfackler/rust-phf")
|
||||
(synopsis "Macros to generate types in the phf crate")
|
||||
(description
|
||||
"This package contains macros to generate types in the phf crate.")
|
||||
(license license:expat)))
|
||||
("rust-quote" ,rust-quote-1))))))
|
||||
|
||||
(define-public rust-phf-macros-0.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue