From 7461257b709e889cdc4ce41c9158609747702372 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Fri, 5 Aug 2022 14:11:42 +0200 Subject: [PATCH v4 28/37] gnu: Add rust-wyz-0.5. * gnu/packages/crates-io.scm (rust-wyz-0.5): New variable. (rust-wyz-0.5): Inherit from above. diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 0934906f5e..695424fabc 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -72298,8 +72298,32 @@ (define-public rust-wyhash-0.5 non-cryptographic hashing algorithm and random number generator.") (license (list license:expat license:asl2.0)))) +(define-public rust-wyz-0.5 + (package + (name "rust-wyz") + (version "0.5.0") + (source (origin + (method url-fetch) + (uri (crate-uri "wyz" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "03ir858jfk3sn98v3vzh33ap8s27sfgbalrv71n069wxyaa1bcrh")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs (("rust-once-cell" ,rust-once-cell-1) + ("rust-tap" ,rust-tap-1) + ("rust-typemap" ,rust-typemap-0.3)))) + (home-page "https://myrrlyn.net/crates/wyz") + (synopsis "Collection of utility functions") + (description + "This package provides a collection of utility functions.") + (license license:expat))) + (define-public rust-wyz-0.4 (package + (inherit rust-wyz-0.5) (name "rust-wyz") (version "0.4.0") (source @@ -72316,12 +72340,7 @@ (define-public rust-wyz-0.4 `(#:cargo-inputs (("rust-once-cell" ,rust-once-cell-1) ("rust-tap" ,rust-tap-1) - ("rust-typemap" ,rust-typemap-0.3)))) - (home-page "https://myrrlyn.net/crates/wyz") - (synopsis "Collection of utility functions") - (description - "This package provides a collection of utility functions.") - (license license:expat))) + ("rust-typemap" ,rust-typemap-0.3)))))) (define-public rust-wyz-0.2 (package -- 2.37.0