me
/
guix
Archived
1
0
Fork 0

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>
master
John Soo 2019-12-19 10:47:08 -08:00 committed by Efraim Flashner
parent 8d701b2cff
commit 4c81e9b99b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -6508,6 +6508,31 @@ algorithms.")
"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")