mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-08 04:14:06 -05:00
gnu: Add rust-ptyprocess-0.4.
* gnu/packages/crates-io.scm (rust-ptyprocess-0.4): New variable. Change-Id: I72b82dbfd2cb9daeefc002f84628a41729a8710e
This commit is contained in:
parent
95ec8beb52
commit
d31e8e38da
1 changed files with 24 additions and 0 deletions
|
@ -54197,6 +54197,30 @@ (define-public rust-ptree-0.4
|
||||||
configuration file and/or environment variables.")
|
configuration file and/or environment variables.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-ptyprocess-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-ptyprocess")
|
||||||
|
(version "0.4.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ptyprocess" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1kz8gzsr2pjpxcxy708338wcdqnxg3cpfbca8q8a44gvpvvsw1by"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
;; Some of the tests hang in the build environment.
|
||||||
|
"--skip=cat_intr")
|
||||||
|
#:cargo-inputs (("rust-nix" ,rust-nix-0.26))))
|
||||||
|
(home-page "https://github.com/zhiburt/ptyprocess")
|
||||||
|
(synopsis "Library to work with PTY/TTY on Unix systems")
|
||||||
|
(description
|
||||||
|
"This package provides a library to work with PTY/TTY on Unix systems.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-publicsuffix-2
|
(define-public rust-publicsuffix-2
|
||||||
(package
|
(package
|
||||||
(name "rust-publicsuffix")
|
(name "rust-publicsuffix")
|
||||||
|
|
Loading…
Reference in a new issue