mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add rust-vte-0.10.
* gnu/packages/crates-io.scm (rust-vte-0.10): New variable. (rust-vte-0.3): Inherit from above.
This commit is contained in:
parent
0c4aa2c9cd
commit
d8bfc899ce
1 changed files with 27 additions and 7 deletions
|
@ -40663,8 +40663,34 @@ (define-public rust-vswhom-sys-0.1
|
||||||
"This package provides a pure FFI to Jon Blow's VS discovery script.")
|
"This package provides a pure FFI to Jon Blow's VS discovery script.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-vte-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-vte")
|
||||||
|
(version "0.10.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "vte" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1mnjw3f071xbvapdgdf8mcdglw60dadcc5hhvz5zpljm53nmzwid"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-arrayvec" ,rust-arrayvec-0.5)
|
||||||
|
("rust-utf8parse" ,rust-utf8parse-0.2)
|
||||||
|
("rust-vte-generate-state-changes"
|
||||||
|
,rust-vte-generate-state-changes-0.1))))
|
||||||
|
(home-page "https://github.com/jwilm/vte")
|
||||||
|
(synopsis "Parser for implementing terminal emulators")
|
||||||
|
(description
|
||||||
|
"This package provides a parser for implementing terminal emulators.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-vte-0.3
|
(define-public rust-vte-0.3
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-vte-0.10)
|
||||||
(name "rust-vte")
|
(name "rust-vte")
|
||||||
(version "0.3.3")
|
(version "0.3.3")
|
||||||
(source
|
(source
|
||||||
|
@ -40676,16 +40702,10 @@ (define-public rust-vte-0.3
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1kz8svnqnxclllsgh0ck20rplw3qzp46b5v30yscnzrgw8vgahjg"))))
|
"1kz8svnqnxclllsgh0ck20rplw3qzp46b5v30yscnzrgw8vgahjg"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; tests not included in release
|
`(#:tests? #f ; tests not included in release
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-utf8parse" ,rust-utf8parse-0.1))))
|
(("rust-utf8parse" ,rust-utf8parse-0.1))))))
|
||||||
(home-page "https://github.com/jwilm/vte")
|
|
||||||
(synopsis "Parser for implementing terminal emulators")
|
|
||||||
(description
|
|
||||||
"This package provides a parser for implementing terminal emulators.")
|
|
||||||
(license (list license:asl2.0 license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-vte-generate-state-changes-0.1
|
(define-public rust-vte-generate-state-changes-0.1
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue