packages: vim: run guix style
This commit is contained in:
parent
7428206175
commit
f32fca1bec
1 changed files with 19 additions and 20 deletions
|
@ -1,39 +1,38 @@
|
||||||
(define-module (shino packages vim)
|
(define-module (shino packages vim)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses)
|
||||||
|
#:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix packages plantuml)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system copy)
|
#:use-module (guix build-system copy))
|
||||||
)
|
|
||||||
|
|
||||||
(define-public vim-plantuml-syntax
|
(define-public vim-plantuml-syntax
|
||||||
(package
|
(package
|
||||||
(name "vim-plantuml-syntax")
|
(name "vim-plantuml-syntax")
|
||||||
(version "0.2.0")
|
(version "0.2.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method git-fetch)
|
(uri (git-reference
|
||||||
(uri (git-reference
|
(url "https://github.com/aklt/plantuml-syntax")
|
||||||
(url "https://github.com/aklt/plantuml-syntax")
|
(commit "660bbb1ece1e654b2176f76ce0689304c5a4a025")))
|
||||||
(commit "660bbb1ece1e654b2176f76ce0689304c5a4a025")))
|
(file-name (git-file-name name version))
|
||||||
(file-name (git-file-name name version))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"05xf36np8y0gdcd05nzmkawh131lp4mm5cjgjr1byr8cjyl1idr3"))))
|
||||||
"05xf36np8y0gdcd05nzmkawh131lp4mm5cjgjr1byr8cjyl1idr3"))))
|
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:install-plan
|
'(#:install-plan '(("ftdetect" "share/vim/vimfiles/")
|
||||||
'(("ftdetect" "share/vim/vimfiles/")
|
("ftplugin" "share/vim/vimfiles/")
|
||||||
("ftplugin" "share/vim/vimfiles/")
|
("indent" "share/vim/vimfiles/")
|
||||||
("indent" "share/vim/vimfiles/")
|
("syntax" "share/vim/vimfiles/"))))
|
||||||
("syntax" "share/vim/vimfiles/"))))
|
|
||||||
(synopsis "Vim PlantUML Syntax/Plugin/FTDetect")
|
(synopsis "Vim PlantUML Syntax/Plugin/FTDetect")
|
||||||
(description
|
(description
|
||||||
"This is a vim syntax file for PlantUML.The filetype will be set to
|
"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
|
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
|
first line of a file contains @@startuml. Additionally the makeprg is set to
|
||||||
plantuml assuming you have this executable in your path.")
|
plantuml assuming you have this executable in your path.")
|
||||||
(home-page "https://github.com/aklt/plantuml-syntax")
|
(home-page "https://github.com/aklt/plantuml-syntax")
|
||||||
(license #f)))
|
(license #f)))
|
||||||
|
|
Loading…
Reference in a new issue