dannym pushed a commit to branch master
in repository guix.

commit a1e6a82cfdffa5439a170e43e43aa099a079f3e7
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue May 20 01:29:20 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-io.scm (rust-line-span-0.1): New variable.
    
    Change-Id: I184da570df4c81d8f3eebc3a1f27536e727d0842
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 41d60adc62..e7bbad097c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -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")

Reply via email to