1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-pty-process-0.4.

* gnu/packages/crates-io.scm (rust-pty-process-0.4): New variable.

Change-Id: I979f7421d0a666f73c415ed4d33811eeac4ff6df
This commit is contained in:
Efraim Flashner 2025-02-11 15:51:24 +02:00
parent f2032c893a
commit d793b245e5
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -58906,6 +58906,32 @@ pointers:
(description "This package provides pretty-print tree-like structures.")
(license (list license:expat license:asl2.0))))
(define-public rust-pty-process-0.4
(package
(name "rust-pty-process")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "pty-process" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1h2wx8mwhr3a90al1y22pf41hkqrq967crsp9bvhpja4w92vajc7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
("rust-rustix" ,rust-rustix-0.38)
("rust-tokio" ,rust-tokio-1))
#:cargo-development-inputs (("rust-futures" ,rust-futures-0.3)
("rust-nix" ,rust-nix-0.26)
("rust-regex" ,rust-regex-1)
("rust-tokio" ,rust-tokio-1))))
(home-page "https://git.tozt.net/pty-process")
(synopsis "Spawn commands attached to a pty")
(description "This package provides the ability to spawn commands attached
to a pty.")
(license license:expat)))
(define-public rust-ptyprocess-0.4
(package
(name "rust-ptyprocess")