diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-19 10:31:23 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:55 +0200 |
commit | 983903efb0924a6a2ab0c9b38ae178eebcc72c27 (patch) | |
tree | 3d14fef71f1634c536d339442257b32bdfb9546a | |
parent | 33fc4e29b154744a4fd15cf006c25953d63acdaa (diff) | |
download | guix-983903efb0924a6a2ab0c9b38ae178eebcc72c27.tar.gz |
gnu: Add rust-phf-0.7.
* gnu/packages/crates-io.scm (rust-phf-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 1b8467c9e2..1838957bc9 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -6425,6 +6425,31 @@ algorithm.") algorithms.") (license (list license:expat license:asl2.0)))) +(define-public rust-phf-0.7 + (package + (name "rust-phf") + (version "0.7.24") + (source + (origin + (method url-fetch) + (uri (crate-uri "phf" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "066xwv4dr6056a9adlkarwp4n94kbpwngbmd47ngm3cfbyw49nmk")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-phf-macros" ,rust-phf-macros-0.7) + ("rust-phf-shared" ,rust-phf-shared-0.7)))) + (home-page "https://github.com/sfackler/rust-phf") + (synopsis "Runtime support for perfect hash function data structures") + (description + "Runtime support for perfect hash function data structures.") + (license license:expat))) + (define-public rust-phf-generator-0.7 (package (name "rust-phf-generator") |