diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-09-17 16:26:52 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-10-12 11:41:56 +0530 |
commit | 7f88c371189891cb1044b0274b9a787089f07cc3 (patch) | |
tree | ae2f64f1f078a5083a4433d1e15fec279c2baeef | |
parent | 107adb84b19e5359cad8412fd2fe5f3fcf41acdc (diff) | |
download | guix-7f88c371189891cb1044b0274b9a787089f07cc3.tar.gz |
gnu: Add rust-ntest-test-cases-0.3.
* gnu/packages/crates-io.scm (rust-ntest-test-cases-0.3): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8ca55fb523..1b77e2c8b0 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -15232,6 +15232,29 @@ with all line endings.") "Cross-platform file system notification library.") (license license:cc0))) +(define-public rust-ntest-test-cases-0.3 + (package + (name "rust-ntest-test-cases") + (version "0.3.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "ntest_test_cases" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0b67m368599b2zgwx19psqz6n3m9m5532h1257x6vz1pym3gd2na")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-1)))) + (home-page "https://github.com/becheran/ntest") + (synopsis "Test cases for ntest framework") + (description "This package provides test cases for ntest framework.") + (license license:expat))) + (define-public rust-ntest-timeout-0.3 (package (name "rust-ntest-timeout") |