[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/17: gnu: Add rust-rand-pcg-0.2.
From: |
guix-commits |
Subject: |
01/17: gnu: Add rust-rand-pcg-0.2. |
Date: |
Mon, 20 Jan 2020 10:00:02 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit c060511f2fcdd380894e6e5557dad1e89f01a544
Author: John Soo <address@hidden>
AuthorDate: Tue Jan 14 09:30:42 2020 -0800
gnu: Add rust-rand-pcg-0.2.
* gnu/packages/crates-io.scm (rust-rand-pcg-0.2): New variable.
(rust-rand-pcg-0.1): Inherit from rust-rand-pcg-0.2.
Signed-off-by: Efraim Flashner <address@hidden>
---
gnu/packages/crates-io.scm | 24 +++++++++++++++++++-----
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5f74ed3..3a0263d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7950,10 +7950,10 @@ generator that uses the HC-128 algorithm.")
("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
("rust-winapi" ,rust-winapi-0.3))))))
-(define-public rust-rand-pcg-0.1
+(define-public rust-rand-pcg-0.2
(package
(name "rust-rand-pcg")
- (version "0.1.2")
+ (version "0.2.1")
(source
(origin
(method url-fetch)
@@ -7961,17 +7961,31 @@ generator that uses the HC-128 algorithm.")
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
- "0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb"))))
+ "0ab4h6s6x3py833jk61lwadq83qd1c8bih2hgi6yps9rnv0x1aqn"))))
(build-system cargo-build-system)
(home-page "https://crates.io/crates/rand_pcg")
(synopsis
- "Selected PCG random number generators")
+ "Selected PCG random number generators")
(description
- "Selected PCG random number generators")
+ "Implements a selection of PCG random number generators.")
(properties '((hidden? . #t)))
(license (list license:asl2.0
license:expat))))
+(define-public rust-rand-pcg-0.1
+ (package
+ (inherit rust-rand-pcg-0.2)
+ (name "rust-rand-pcg")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "rand_pcg" version))
+ (file-name (string-append name "-" version ".crate"))
+ (sha256
+ (base32
+ "0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb"))))))
+
(define-public rust-rand-xorshift-0.2
(package
(name "rust-rand-xorshift")
- branch master updated (a8ef497 -> 1ff4d9c), guix-commits, 2020/01/20
- 01/17: gnu: Add rust-rand-pcg-0.2.,
guix-commits <=
- 04/17: gnu: Add rust-rayon-core-1.7., guix-commits, 2020/01/20
- 03/17: gnu: rust-rand-pcg-0.2: Don't hide package., guix-commits, 2020/01/20
- 02/17: gnu: rust-rand-pcg-0.1: Don't hide package., guix-commits, 2020/01/20
- 09/17: gnu: rust-term-0.5: Don't hide package., guix-commits, 2020/01/20
- 08/17: gnu: rust-term-0.4: Don't hide package., guix-commits, 2020/01/20
- 06/17: gnu: Add rust-libgit2-sys-0.10., guix-commits, 2020/01/20
- 07/17: gnu: Add rust-rand-0.7., guix-commits, 2020/01/20
- 05/17: gnu: Add rust-rayon-1.3., guix-commits, 2020/01/20
- 10/17: gnu: rust-rustc-test-0.3: Correct cargo-inputs., guix-commits, 2020/01/20
- 16/17: gnu: Add rust-tempfile-3.1., guix-commits, 2020/01/20