1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add rust-line-span@0.1.5.

* gnu/packages/crates-io.scm (rust-line-span-0.1): New variable.

Change-Id: I184da570df4c81d8f3eebc3a1f27536e727d0842
This commit is contained in:
Danny Milosavljevic 2025-05-20 01:29:20 +02:00
parent 9ae2bd1b92
commit a1e6a82cfd
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -40818,6 +40818,27 @@ C parser and toolkit developed for the GNOME project.")
(description "This package provides an object pool manager in Rust.")
(license license:expat)))
(define-public rust-line-span-0.1
(package
(name "rust-line-span")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "line-span" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "12j07vn0vnchlvlrh3cc3320jaz07sggcj42l6f0j0365wxi5z19"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
(home-page "https://github.com/vallentin/line-span")
(synopsis "Find line ranges and jump between next and previous lines")
(description
"This package provides a way to find line ranges and to jump between
next and previous lines.")
(license license:expat)))
(define-public rust-line-col-0.2
(package
(name "rust-line-col")