me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-getch-0.2.

* gnu/packages/crates-io.scm (rust-getch-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2020-06-17 15:29:51 -07:00 committed by Efraim Flashner
parent e7c83de37a
commit f6417cdb79
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -9893,6 +9893,31 @@ API library @code{gdi32}.")
"This package provides a package for generating 3D meshes/")
(license license:asl2.0)))
(define-public rust-getch-0.2
(package
(name "rust-getch")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "getch" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"00in8q95qi8a5q3zn2zcaqp5avj79f5myd2a4zfdy2m24ycvbc5v"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libc" ,rust-libc-0.2)
("rust-termios" ,rust-termios-0.2))))
(home-page "https://nest.pijul.com/pijul_org/getch")
(synopsis "Portable implementation of getch")
(description
"This package provides a portable implementation of getch, using
@code{_getch} on Windows, and @code{termios} on Unix.")
(license license:asl2.0)))
(define-public rust-getopts-0.2
(package
(name "rust-getopts")