mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add tree-sitter-plantuml.
* gnu/packages/tree-sitter.scm (tree-sitter-plantuml): New variable.
This commit is contained in:
parent
1936f38d6d
commit
fee5c15f11
1 changed files with 17 additions and 0 deletions
|
@ -590,3 +590,20 @@ (define-public tree-sitter-racket
|
|||
(git-version "0.1.0" revision commit)
|
||||
#:repository-url "https://github.com/6cdh/tree-sitter-racket"
|
||||
#:commit commit)))
|
||||
|
||||
(define-public tree-sitter-plantuml
|
||||
;; No tags
|
||||
(let ((commit "bea443ef909484938cb0a9176ebda7b8a3d108f7")
|
||||
(revision "0"))
|
||||
(tree-sitter-grammar
|
||||
"plantuml" "PlantUML"
|
||||
"0swqq4blhlvvgrvsb0h4cjl3pnfmmdpfd5r5kg9rpdwk0sn98x3a"
|
||||
(git-version "1.0.0" revision commit)
|
||||
#:repository-url "https://github.com/Decodetalkers/tree_sitter_plantuml"
|
||||
#:commit commit
|
||||
#:get-cleanup-snippet
|
||||
(lambda _
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
(delete-file "binding.gyp")
|
||||
(delete-file-recursively "bindings"))))))
|
||||
|
|
Loading…
Reference in a new issue