me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-lsp-types-0.91.

* gnu/packages/crates-io.scm (rust-lsp-types-0.91): New variable.
(rust-lsp-types-0.89): Inherit from above.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Z572 2022-01-12 23:27:52 +08:00 committed by Nicolas Goaziou
parent b6924ef65a
commit 6992626793
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 41 additions and 17 deletions

View File

@ -29852,28 +29852,28 @@ key-value pairs.")
(base32 (base32
"0jxsgkn378kxkiqdshdjdclw5wwp2xaz45cqd3yw85fhn8a38fza")))))) "0jxsgkn378kxkiqdshdjdclw5wwp2xaz45cqd3yw85fhn8a38fza"))))))
(define-public rust-lsp-types-0.89 (define-public rust-lsp-types-0.91
(package (package
(name "rust-lsp-types") (name "rust-lsp-types")
(version "0.89.2") (version "0.91.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "lsp-types" version)) (uri (crate-uri "lsp-types" version))
(file-name (file-name
(string-append name "-" version ".tar.gz")) (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"18h9dckjy11pz2lpd5lm12vvfcds1qg67clqalr35k2jzpnhsbl5")))) "1bk8iy7s80i2iqj1siyfm0rsdq2vwvz7lclsrcrx2pa2b4n32s13"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1) (("rust-bitflags" ,rust-bitflags-1)
("rust-serde" ,rust-serde-1) ("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1) ("rust-serde-json" ,rust-serde-json-1)
("rust-serde-repr" ,rust-serde-repr-0.1) ("rust-serde-repr" ,rust-serde-repr-0.1)
("rust-url" ,rust-url-2)))) ("rust-url" ,rust-url-2))))
(home-page "https://github.com/gluon-lang/lsp-types") (home-page "https://github.com/gluon-lang/lsp-types")
(synopsis "Types for interaction with a language server") (synopsis "Types for interaction with a language server")
(description (description
@ -29881,6 +29881,30 @@ key-value pairs.")
server (LSP).") server (LSP).")
(license license:expat))) (license license:expat)))
(define-public rust-lsp-types-0.89
(package
(inherit rust-lsp-types-0.91)
(name "rust-lsp-types")
(version "0.89.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "lsp-types" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"18h9dckjy11pz2lpd5lm12vvfcds1qg67clqalr35k2jzpnhsbl5"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-serde-repr" ,rust-serde-repr-0.1)
("rust-url" ,rust-url-2))))))
(define-public rust-lsp-types-0.83 (define-public rust-lsp-types-0.83
(package (package
(inherit rust-lsp-types-0.89) (inherit rust-lsp-types-0.89)