mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 10:56:56 -05:00
gnu: Add rust-expectrl-0.7.
* gnu/packages/crates-io.scm (rust-expectrl-0.7): New variable. Change-Id: I3af804bb5795fa065f124466cbaa04b5e4793dc6
This commit is contained in:
parent
a227d37ca4
commit
dd8e4e826c
1 changed files with 37 additions and 0 deletions
|
@ -25059,6 +25059,43 @@ (define-public rust-expectest-0.12
|
|||
testing.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-expectrl-0.7
|
||||
(package
|
||||
(name "rust-expectrl")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "expectrl" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0ykiqkh2r3ky1244r4j0x49hqawdrfdh1mai6fdapz2kb6989rzd"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags
|
||||
'("--release" "--"
|
||||
;; These tests don't do well in the build environment
|
||||
"--skip=bash_control_chars"
|
||||
"--skip=python"
|
||||
"--skip=send")
|
||||
#:cargo-inputs
|
||||
(("rust-async-io" ,rust-async-io-1)
|
||||
("rust-blocking" ,rust-blocking-1)
|
||||
("rust-conpty" ,rust-conpty-0.5)
|
||||
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
|
||||
("rust-futures-lite" ,rust-futures-lite-1)
|
||||
("rust-futures-timer" ,rust-futures-timer-3)
|
||||
("rust-nix" ,rust-nix-0.26)
|
||||
("rust-polling" ,rust-polling-2)
|
||||
("rust-ptyprocess" ,rust-ptyprocess-0.4)
|
||||
("rust-regex" ,rust-regex-1))))
|
||||
(home-page "https://github.com/zhiburt/expectrl")
|
||||
(synopsis "Tool for automating terminal applications in Unix")
|
||||
(description
|
||||
"This package provides a tool for automating terminal applications in Unix
|
||||
like Don libes expect.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-extend-0.1
|
||||
(package
|
||||
(name "rust-extend")
|
||||
|
|
Loading…
Reference in a new issue