mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add rust-phf-codegen-0.10.
* gnu/packages/crates-io.scm (rust-phf-codegen-0.10): New variable. (rust-phf-codegen-0.8): Inherit from above.
This commit is contained in:
parent
d1aae6db33
commit
da3e947fa2
1 changed files with 24 additions and 6 deletions
|
@ -36568,8 +36568,31 @@ (define-public rust-phf-0.7
|
|||
"Runtime support for perfect hash function data structures.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-phf-codegen-0.10
|
||||
(package
|
||||
(name "rust-phf-codegen")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "phf_codegen" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1k8kdad9wk2d5972k6jmjki2xpdy2ky4zd19rv7ybm2dpjlc7cag"))))
|
||||
(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))))
|
||||
(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-codegen-0.8
|
||||
(package
|
||||
(inherit rust-phf-codegen-0.10)
|
||||
(name "rust-phf-codegen")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
|
@ -36581,16 +36604,11 @@ (define-public rust-phf-codegen-0.8
|
|||
(sha256
|
||||
(base32
|
||||
"05d8w7aqqjb6039pfm6404gk5dlwrrf97kiy1n21212vb1hyxzyb"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-phf-generator" ,rust-phf-generator-0.8)
|
||||
("rust-phf-shared" ,rust-phf-shared-0.8))))
|
||||
(home-page "https://github.com/sfackler/rust-phf")
|
||||
(synopsis "Codegen library for PHF types")
|
||||
(description "Codegen library for PHF types.")
|
||||
(license license:expat)))
|
||||
("rust-phf-shared" ,rust-phf-shared-0.8))))))
|
||||
|
||||
(define-public rust-phf-codegen-0.7
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue