guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c4527dfb56d9f814f4da5bf19940cb20a1f29971
Author: Karl Hallsby <[email protected]>
AuthorDate: Wed Oct 1 21:44:33 2025 -0500

    gnu: Add tree-sitter-qml.
    
    * gnu/packages/tree-sitter.scm (tree-sitter-qml): New variable.
    
    Change-Id: I0a513942073bd5911a37ccb2162b4f6d09b36d32
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/tree-sitter.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tree-sitter.scm b/gnu/packages/tree-sitter.scm
index 8e5e1deea9..331290a271 100644
--- a/gnu/packages/tree-sitter.scm
+++ b/gnu/packages/tree-sitter.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2023 Andrew Tropin <[email protected]>
 ;;; Copyright © 2023, 2024 Nicolas Graves <[email protected]>
 ;;; Copyright © 2023 Zheng Junjie <[email protected]>
-;;; Copyright © 2023, 2024 Raven Hallsby <[email protected]>
+;;; Copyright © 2023-2025 Raven Hallsby <[email protected]>
 ;;; Copyright © 2024 Foundation Devices, Inc. <[email protected]>
 ;;; Copyright © 2025 Andrew Wong <[email protected]>
 ;;; Copyright © 2025 Nguyễn Gia Phong <[email protected]>
@@ -660,6 +660,19 @@ which will be used as a snippet in origin."
    "0a108sfqcsxrp54lapk7k3kq6fmz8745z5q99wpn3i1cqpi9slzg"
    "0.23.6"))
 
+(define-public tree-sitter-qml
+  (let ((version "0.2.0") ; Tagged, but we use a more recent commit
+        (commit "0889da4632bba3ec6f39ef4102625654890c15c1")
+        (revision "0"))
+    (tree-sitter-grammar
+     "qml" "Qml"
+     "1qdfwbqjnw7vcvq2dcx19c159b12kv2hvwrvbp7m9i5vl6szc22g"
+     (git-version version revision commit)
+     #:repository-url "https://github.com/yuja/tree-sitter-qmljs";
+     #:commit commit
+     #:inputs (delay (list tree-sitter-javascript tree-sitter-typescript))
+     #:license license:expat)))
+
 (define-public tree-sitter-query
   (package
     (inherit (tree-sitter-grammar "query"

Reply via email to