diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-05-22 17:17:13 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 19:37:57 +0300 |
commit | 9f110003a9ce33fd4e866a3c650bb4c152936605 (patch) | |
tree | 3e2804b0d175ac8368d30ee0ff7e636df8d33cb9 /gnu | |
parent | 81452254078e34abf200c8812663a24671c28b2a (diff) | |
download | guix-9f110003a9ce33fd4e866a3c650bb4c152936605.tar.gz |
gnu: Add rust-subplotlib-derive-0.7.
* gnu/packages/crates-io.scm (rust-subplotlib-derive-0.7): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ae0be74b01..f4e6c15f79 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -61945,6 +61945,31 @@ easier in Rust.") ("rust-quote" ,rust-quote-1) ("rust-syn" ,rust-syn-1)))))) +(define-public rust-subplotlib-derive-0.7 + (package + (name "rust-subplotlib-derive") + (version "0.7.1") + (source (origin + (method url-fetch) + (uri (crate-uri "subplotlib-derive" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "11x93kzj6x5x44irkbiz1vyns9ivr7skixyd318sxa021xas16ci")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-fehler" ,rust-fehler-1) + ("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-2)))) + (home-page "https://subplot.tech/") + (synopsis "macros for constructing subplotlib based test suites") + (description + "This package provides macros for constructing subplotlib based test +suites, typically generated by @code{subplot codegen}.") + (license license:expat-0))) + (define-public rust-subprocess-0.2 (package (name "rust-subprocess") |