1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-09 23:50:47 +02:00

gnu: Add vim-plantuml-syntax.

* gnu/packages/vim.scm (vim-plantuml-syntax): New variable.

Change-Id: I3e116520239bb66b1140e5bbd40659b3681f77e6
Signed-off-by: Greg Hogan <code@greghogan.com>
This commit is contained in:
Nathan Merkley 2023-12-07 09:54:09 -07:00 committed by Greg Hogan
parent 9e8b3b8ed6
commit 0eb7f3d989
No known key found for this signature in database
GPG key ID: EF6EB27413CFEEF3

View file

@ -1785,3 +1785,31 @@ programming language")
language.")
(home-page "https://github.com/ziglang/zig.vim")
(license license:expat))))
(define-public vim-plantuml-syntax
(let ((commit "845abb56dcd3f12afa6eb47684ef5ba3055802b8")
(revision "1"))
(package
(name "vim-plantuml-syntax")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/aklt/plantuml-syntax")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 "0d2frv6knkj4bjavq2c2kx8qdnmcq0d8l04a5z7bpqwkmrrhd31f"))))
(build-system vim-build-system)
(arguments
(list
#:plugin-name "plantuml-syntax"))
(synopsis "Syntax highlighting for PlantUML")
(description
"This is a vim syntax file for PlantUML. The filetype will be set to
plantuml for *.pu, *.uml, *.puml, *.iuml or *.plantuml files or if the first
line of a file contains @@startuml. Additionally the makeprg is set to plantuml
assuming you have this executable in your path.")
(home-page "https://github.com/aklt/plantuml-syntax")
(license license:vim))))