gnu: Add rust-phf-generator-0.10.
* gnu/packages/crates-io.scm (rust-phf-generator-0.10): New variable. (rust-phf-generator-0.8): Inherit from above.
This commit is contained in:
parent
e12c731a3d
commit
7f6f8f8aff
1 changed files with 25 additions and 6 deletions
|
@ -36616,8 +36616,32 @@ function data structures.")
|
||||||
(description "Codegen library for PHF types.")
|
(description "Codegen library for PHF types.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-phf-generator-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-phf-generator")
|
||||||
|
(version "0.10.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "phf_generator" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1mlq6hlajsvlsx6rhw49g9ricsm017lrxmgmmbk85sxm7f4qaljx"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-phf-shared" ,rust-phf-shared-0.10)
|
||||||
|
("rust-rand" ,rust-rand-0.8))))
|
||||||
|
(home-page "https://github.com/sfackler/rust-phf")
|
||||||
|
(synopsis "PHF generation logic")
|
||||||
|
(description "PHF generation logic.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-phf-generator-0.8
|
(define-public rust-phf-generator-0.8
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-phf-generator-0.10)
|
||||||
(name "rust-phf-generator")
|
(name "rust-phf-generator")
|
||||||
(version "0.8.0")
|
(version "0.8.0")
|
||||||
(source
|
(source
|
||||||
|
@ -36629,17 +36653,12 @@ function data structures.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09i5338d1kixq6a60fcayz6awgxjlxcfw9ic5f02abbgr067ydhp"))))
|
"09i5338d1kixq6a60fcayz6awgxjlxcfw9ic5f02abbgr067ydhp"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-criterion" ,rust-criterion-0.3)
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
("rust-rand" ,rust-rand-0.7)
|
("rust-rand" ,rust-rand-0.7)
|
||||||
("rust-phf-shared" ,rust-phf-shared-0.8))))
|
("rust-phf-shared" ,rust-phf-shared-0.8))))))
|
||||||
(home-page "https://github.com/sfackler/rust-phf")
|
|
||||||
(synopsis "PHF generation logic")
|
|
||||||
(description "PHF generation logic.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-phf-generator-0.7
|
(define-public rust-phf-generator-0.7
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue