me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-sample-std-0.2.

* gnu/packages/crates-io.scm (rust-sample-std-0.2): New variable.

Change-Id: I3d2bb555873d74642297c8060e0caa7a57ea45e3
master
Efraim Flashner 2024-03-16 21:46:43 +02:00
parent a79f43c8db
commit c71f47d944
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -60331,6 +60331,32 @@ paths point to the same file.")
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.3))))))
(define-public rust-sample-std-0.2
(package
(name "rust-sample-std")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "sample-std" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1j2q8flzjjcbfnqkj08fyqa2dwdwigxaxn04w2hjqazbqqcx52wl"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Errors in the test code.
#:cargo-inputs (("rust-casey" ,rust-casey-0.4)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8)
("rust-rand-regex" ,rust-rand-regex-0.15)
("rust-regex" ,rust-regex-1))
#:cargo-development-inputs (("rust-once-cell" ,rust-once-cell-1)
("rust-sample-test" ,rust-sample-test-0.2))))
(home-page "https://docs.rs/sample-std")
(synopsis "Sampler definitions and implementations for st")
(description "Sampler definitions and implementations for st.")
(license license:asl2.0)))
(define-public rust-sample-test-0.2
(package
(name "rust-sample-test")