me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-run-script-0.10.

* gnu/packages/crates-io.scm (rust-run-script-0.10): New variable.

Change-Id: I6e31c8be9b7f48082a1787fdb58593fbf864d753
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Jaeme Sifat 2023-12-29 19:40:15 -05:00 committed by Efraim Flashner
parent c7c0c228e8
commit a802faedfc
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -59592,6 +59592,31 @@ console applications.")
structures with structural sharing.")
(license license:mpl2.0)))
(define-public rust-run-script-0.10
(package
(name "rust-run-script")
(version "0.10.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "run_script" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ix9kf1b3h5vmdadpv7rfxylmj8mphlbx0xgv6frhy4dqpyri7w2"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-fsio" ,rust-fsio-0.4))
#:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3))))
(home-page "http://github.com/sagiegurari/run_script")
(synopsis "Run shell scripts in Rust")
(description "This library enables to invoke shell scripts based on their
content. While @code{std::process::Command} works great to execute standalone
command, you need more manual code to take a script text and execute it. For
this purpose, this library was created.")
(license license:asl2.0)))
(define-public rust-runtime-0.3
(package
(name "rust-runtime")