mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-phf-codegen-0.7.
* gnu/packages/crates-io.scm (rust-phf-codegen-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
8d701b2cff
commit
4c81e9b99b
1 changed files with 25 additions and 0 deletions
|
@ -6508,6 +6508,31 @@ (define-public rust-phf-0.7
|
|||
"Runtime support for perfect hash function data structures.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-phf-codegen-0.7
|
||||
(package
|
||||
(name "rust-phf-codegen")
|
||||
(version "0.7.24")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "phf-codegen" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0zjiblicfm0nrmr2xxrs6pnf6zz2394wgch6dcbd8jijkq98agmh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-phf-generator" ,rust-phf-generator-0.7)
|
||||
("rust-phf-shared" ,rust-phf-shared-0.7))))
|
||||
(home-page
|
||||
"https://github.com/sfackler/rust-phf")
|
||||
(synopsis "Codegen library for PHF types")
|
||||
(description "Codegen library for PHF types.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-phf-generator-0.7
|
||||
(package
|
||||
(name "rust-phf-generator")
|
||||
|
|
Loading…
Reference in a new issue