summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 12:22:59 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 12:22:59 -0600
commit296bb909ad828705242319a1759bb59ad511dfc8 (patch)
treefd7a8e6e48bbeaa5187008a71b07e5faf0a7263b
parent36cc716627a4c6ab07922d187c9840c7edb7ee17 (diff)
downloadguix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.tar.gz
guix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.tar.bz2
guix-msglm-296bb909ad828705242319a1759bb59ad511dfc8.zip
add rust-quickcheck
-rw-r--r--unlustig.scm22
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))))
+