diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-03-08 15:37:02 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-05 13:20:18 +0200 |
commit | b8faa13edd12741f715784f7523cc3927adfee3c (patch) | |
tree | 37b0f1b4cb0ceee087bfedd6ddc9450eb1137a12 /gnu | |
parent | 9a0e2bfffd6e21943e9548749c42de567d73628b (diff) | |
download | guix-b8faa13edd12741f715784f7523cc3927adfee3c.tar.gz |
gnu: Add rust-docmatic-0.1.
* gnu/packages/crates-io.scm (rust-docmatic-0.1): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f234a9134b..188a3eb526 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5282,6 +5282,26 @@ system libraries.") from macros.") (license license:expat))) +(define-public rust-docmatic-0.1 + (package + (name "rust-docmatic") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "docmatic" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1hx85n266lxswqxrbbinqlhi1qcnjgd4cc7v42abg72kmz7fnn4d")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-which" ,rust-which-2.0)))) + (home-page "https://github.com/assert-rs/docmatic") + (synopsis "Test Rust examples in your documentation") + (description "Test Rust examples in your documentation.") + (license license:expat))) + (define-public rust-docopt-1.1 (package (name "rust-docopt") |