me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-sample-std-0.1.

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

Change-Id: Iee75d098eca11ed7481cbf7de4912c7ac3510537
master
Efraim Flashner 2024-03-16 21:59:57 +02:00
parent 5dba98e838
commit 16402f874e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -60931,6 +60931,28 @@ paths point to the same file.")
(description "Sampler definitions and implementations for st.")
(license license:asl2.0)))
(define-public rust-sample-std-0.1
(package
(inherit rust-sample-std-0.2)
(name "rust-sample-std")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "sample-std" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1j2p3bj3c8gcxrfx5402zygm5l564p09bc0gj8wfhb1hqcyiayjn"))))
(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.1))))))
(define-public rust-sample-test-0.2
(package
(name "rust-sample-test")