diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:22:59 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:22:59 -0600 |
commit | 296bb909ad828705242319a1759bb59ad511dfc8 (patch) | |
tree | fd7a8e6e48bbeaa5187008a71b07e5faf0a7263b | |
parent | 36cc716627a4c6ab07922d187c9840c7edb7ee17 (diff) | |
download | guix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.tar.gz guix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.tar.bz2 guix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.zip |
add rust-quickcheck
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index f44c117..30c7cf9 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2079,3 +2079,25 @@ (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)))) + |