me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-vlq-0.5.

* gnu/packages/crates-io.scm (rust-vlq-0.5): New variable.
Efraim Flashner 2023-10-03 10:23:49 +03:00
parent 322b124936
commit 04c23574d8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -77863,6 +77863,25 @@ updated when the crate version changes.")
("rust-toml" ,rust-toml-0.4)
("rust-url" ,rust-url-1))))))
(define-public rust-vlq-0.5
(package
(name "rust-vlq")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "vlq" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zygijgl47gasi0zx34ak1jq2n4qmk0cx2zpn13shba157npxpb5"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.5))))
(home-page "https://github.com/tromey/vlq")
(synopsis "Sourcemap-style VLQ encoder and decoder")
(description "Sourcemap-style VLQ encoder and decoder.")
(license (list license:asl2.0 license:expat))))
(define-public rust-void-1
(package
(name "rust-void")