diff options
author | Divya Ranjan <[email protected]> | 2025-01-05 07:03:40 +0000 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-01-06 12:22:53 +0200 |
commit | 8bd0af6e753fe9699dfee9203574a3d8db6d8ba6 (patch) | |
tree | d96df9980394585524e66347ef8722407ef3f359 /gnu | |
parent | a81f58bebb5b17d5e14d616253d54c13e399b07d (diff) |
gnu: Add rust-termios-0.2.
* gnu/packages/crates-io.scm (rust-termios-0.2): New variable.
Change-Id: I55759155d447ec3f70495f6c02eee1b9851b799d
Signed-off-by: Efraim Flashner <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f935750ef0..ecaf69583c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -79454,13 +79454,13 @@ color of the terminal.") (name "rust-termios") (version "0.3.3") (source - (origin - (method url-fetch) - (uri (crate-uri "termios" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0sxcs0g00538jqh5xbdqakkzijadr8nj7zmip0c7jz3k83vmn721")))) + (origin + (method url-fetch) + (uri (crate-uri "termios" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0sxcs0g00538jqh5xbdqakkzijadr8nj7zmip0c7jz3k83vmn721")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs @@ -79474,6 +79474,21 @@ bindings are a small wrapper around the raw C functions, which converts integer return values to @code{std::io::Result} to indicate success or failure.") (license license:expat))) +(define-public rust-termios-0.2 + (package + (inherit rust-termios-0.3) + (name "rust-termios") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "termios" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0fk8nl0rmk43jrh6hjz6c6d83ri7l6fikag6lh0ffz3di9cwznfm")))) + (arguments + `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)))))) + (define-public rust-termtree-0.5 (package (name "rust-termtree") |