From 514c6fc94c42391c79bfd84d74241184f8e9136c Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 22 May 2023 17:56:37 +0300 Subject: [PATCH] gnu: Add rust-subplot-0.7. * gnu/packages/crates-io.scm (rust-subplot-0.7): New variable. --- gnu/packages/crates-io.scm | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a94a45776c..13cd3789c1 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -61945,6 +61945,56 @@ easier in Rust.") ("rust-quote" ,rust-quote-1) ("rust-syn" ,rust-syn-1)))))) +(define-public rust-subplot-0.7 + (package + (name "rust-subplot") + (version "0.7.1") + (source (origin + (method url-fetch) + (uri (crate-uri "subplot" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1la2vsjlxarld2w7farzlbmiy2hvascmd8bhi29ssm816m571jc8")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-test-flags + (list "--release" "--" + ;; These rely on java + "--skip=diagrams::PlantumlMarkup" + "--skip=diagrams::DotMarkup") + #:cargo-inputs + (("rust-anyhow" ,rust-anyhow-1) + ("rust-base64" ,rust-base64-0.21) + ("rust-clap" ,rust-clap-4) + ("rust-env-logger" ,rust-env-logger-0.10) + ("rust-file-diff" ,rust-file-diff-1) + ("rust-git-testament" ,rust-git-testament-0.2) + ("rust-html-escape" ,rust-html-escape-0.2) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-line-col" ,rust-line-col-0.2) + ("rust-log" ,rust-log-0.4) + ("rust-pikchr" ,rust-pikchr-0.1) + ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.9) + ("rust-regex" ,rust-regex-1) + ("rust-roadmap" ,rust-roadmap-0.5) + ("rust-serde" ,rust-serde-1) + ("rust-serde-aux" ,rust-serde-aux-4) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-serde-yaml" ,rust-serde-yaml-0.9) + ("rust-tempfile" ,rust-tempfile-3) + ("rust-tempfile-fast" ,rust-tempfile-fast-0.3) + ("rust-tera" ,rust-tera-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-time" ,rust-time-0.3) + ("rust-walkdir" ,rust-walkdir-2)))) + (home-page "https://subplot.tech/") + (synopsis "Tools for automated acceptance tests") + (description + "This package provides tools for specifying, documenting, and implementing +automated acceptance tests for systems and software.") + (license license:expat-0))) + (define-public rust-subplot-build-0.7 (package (name "rust-subplot-build")