diff options
author | msglm <msglm@techchud.xyz> | 2025-01-21 20:28:13 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-01-21 20:28:13 -0600 |
commit | da5816f4a0d24791acf67d6f72282ffd12631bd5 (patch) | |
tree | 4e5f93b38d88052badd17f89096ea62d41d930a8 | |
parent | d5aa1550c0030c8102875cc9765fa86327463e12 (diff) | |
download | guix-msglm-da5816f4a0d24791acf67d6f72282ffd12631bd5.tar.gz guix-msglm-da5816f4a0d24791acf67d6f72282ffd12631bd5.tar.bz2 guix-msglm-da5816f4a0d24791acf67d6f72282ffd12631bd5.zip |
add rust-quickcheck-1
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 4c7b571..047a0ae 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2166,3 +2166,25 @@ binding to JVM APIs from Rust") (description "This package provides Criterion's plotting library.") (license (list license:expat license:asl2.0)))) +(define-public rust-quickcheck-1 + (package + (name "rust-quickcheck") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "quickcheck" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mjhkfqwrb8mdyxdqr4zzbj1rm5dfx25n9zcc25lb6fxwiw673sq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-env-logger" ,rust-env-logger-0.8) + ("rust-log" ,rust-log-0.4) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/BurntSushi/quickcheck") + (synopsis "Automatic property based testing with shrinking") + (description + "This package provides Automatic property based testing with shrinking.") + (license (list license:unlicense license:expat)))) + |