gnu: Add rust-nu-ansi-term-0.50.
* gnu/packages/shells.scm (rust-nu-ansi-term-0.50): New variable. (rust-nu-ansi-term-0.49): Inherit from rust-nu-ansi-term-0.50. Change-Id: I8ba9e3bae5e434bf1351e94e6d05cec4e7ce8f1c
This commit is contained in:
parent
4fe5991bff
commit
63e73a89b5
1 changed files with 27 additions and 9 deletions
|
@ -15,7 +15,7 @@
|
||||||
;;; Copyright © 2019, 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2019, 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020, 2022, 2024 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
|
||||||
|
@ -1082,8 +1082,33 @@ directory. These values can be piped through a series of steps, in a series
|
||||||
of commands called a ``pipeline''.")
|
of commands called a ``pipeline''.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-nu-ansi-term-0.50
|
||||||
|
(package
|
||||||
|
(name "rust-nu-ansi-term")
|
||||||
|
(version "0.50.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "nu-ansi-term" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "057zhc62hcaxc73zfjwq7gir5bfilmx652hnh9krdp0babhh0a6x"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-windows-sys" ,rust-windows-sys-0.48))
|
||||||
|
#:cargo-development-inputs (("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1))))
|
||||||
|
(home-page "https://github.com/nushell/nu-ansi-term")
|
||||||
|
(synopsis "Library for ANSI terminal colors and styles (bold, underline)")
|
||||||
|
(description
|
||||||
|
"This package is a library for ANSI terminal colors and styles (bold,
|
||||||
|
underline).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-nu-ansi-term-0.49
|
(define-public rust-nu-ansi-term-0.49
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-nu-ansi-term-0.50)
|
||||||
(name "rust-nu-ansi-term")
|
(name "rust-nu-ansi-term")
|
||||||
(version "0.49.0")
|
(version "0.49.0")
|
||||||
(source
|
(source
|
||||||
|
@ -1093,20 +1118,13 @@ of commands called a ``pipeline''.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0s2svfnircd9jp06wk55qcbb9v5cadkfcjfg99vm21qdjg0x6wy0"))))
|
(base32 "0s2svfnircd9jp06wk55qcbb9v5cadkfcjfg99vm21qdjg0x6wy0"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-serde" ,rust-serde-1)
|
(("rust-serde" ,rust-serde-1)
|
||||||
("rust-windows-sys" ,rust-windows-sys-0.48))
|
("rust-windows-sys" ,rust-windows-sys-0.48))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-doc-comment" ,rust-doc-comment-0.3)
|
(("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||||
("rust-serde-json" ,rust-serde-json-1))))
|
("rust-serde-json" ,rust-serde-json-1))))))
|
||||||
(home-page "https://www.nushell.sh")
|
|
||||||
(synopsis "Library for ANSI terminal colors and styles (bold, underline)")
|
|
||||||
(description
|
|
||||||
"This package is a library for ANSI terminal colors and styles (bold,
|
|
||||||
underline).")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-nu-ansi-term-0.46
|
(define-public rust-nu-ansi-term-0.46
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue