me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-terminal-size-0.1.

* gnu/packages/crates-io.scm (rust-terminal-size-0.1): New variable.
master
Efraim Flashner 2020-07-12 11:36:39 +03:00
parent f485daf3cb
commit d695ebb660
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -25115,6 +25115,31 @@ writing colored text to a terminal.")
(license (list license:unlicense
license:expat))))
(define-public rust-terminal-size-0.1
(package
(name "rust-terminal-size")
(version "0.1.13")
(source
(origin
(method url-fetch)
(uri (crate-uri "terminal-size" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"04qy9i0k3qkhl749xk30xga0l7w61rf4bj5zy0r44w3jijgws54s"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests expect access to /dev/stderr
#:cargo-inputs
(("rust-libc" ,rust-libc-0.2)
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/eminence/terminal-size")
(synopsis "Gets the size of your Linux or Windows terminal")
(description
"This package gets the size of your Linux or Windows terminal.")
(license (list license:expat license:asl2.0))))
(define-public rust-terminfo-0.6
(package
(name "rust-terminfo")