Advertisement
Guest User

Untitled

a guest
Jul 25th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.14 KB | None | 0 0
  1. (define-public vim-go
  2.   (package
  3.     (name "vim-go")
  4.     (version "1.23")
  5.     (source
  6.       (origin
  7.         (method git-fetch)
  8.         (uri (git-reference
  9.                (url "https://github.com/fatih/vim-go")
  10.                (commit (string-append "v" version))))
  11.         (file-name (git-file-name name version))
  12.         (sha256
  13.           (base32
  14.             ""))))
  15.     (build-system copy-build-system)
  16.     (inputs '(("go" ,go)))
  17.     (arguments
  18.       '(#!install-plan
  19.         '(("autoload" "share/vim/vimfiles/")
  20.           ("compiler" "share/vim/vimfiles")
  21.           ("doc", "share/vim/vimfiles")
  22.           ("ftdetect" "share/vim/vimfiles")
  23.           ("ftplugin" "share/vim/vimfiles")
  24.           ("gosnippets" "share/vim/vimfiles")
  25.           ("ident" "share/vim/vimplugins")
  26.           ("plugin" "share/vim/vimplugins")
  27.           ("syntax" "share/vim/vimplugins")
  28.           ("templates" "share/vim/vimplugins")
  29.           ("test" "share/vim/vimplugins"))))
  30.     (home-page "https://github.com/fatih/vim-go")
  31.     (synopsis "Go development plugin for Vim")
  32.     (description "Go development plugin for Vim")
  33.     (license license:expat)))
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement