From 1c5eac5db0e8a94adf8d02feabe70f2f72803123 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Fri, 5 Aug 2022 14:11:42 +0200 Subject: [PATCH v4 27/38] 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 e6134d10cc..c0a939ce97 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -72349,8 +72349,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 @@ -72367,12 +72391,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.36.1