summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Merkley <nathanmerkley@gmail.com>2023-12-07 09:54:06 -0700
committerGreg Hogan <code@greghogan.com>2025-07-09 03:49:03 +0000
commitf570c9a5a8f322bf67cd182903f6e27ddc11a2ac (patch)
tree8c6625d6dfeeaab0e2dbace540fbe3d11b2e6e10
parent3e5fc9aff8410ad67b0e0c290c442b67d93b8185 (diff)
gnu: Add vim-dhall-vim.
* gnu/packages/vim.scm (vim-dhall-vim): New variable. Change-Id: I7bb32594546eb61f781d69a308aa866e4ce78de9 Signed-off-by: Greg Hogan <code@greghogan.com>
-rw-r--r--gnu/packages/vim.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index fdaa656ec8..72b0e40627 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1709,3 +1709,29 @@ detects whether a Scheme file is a Guile file and adds syntax highlighting for
Guile's special forms.")
(home-page "https://github.com/HiPhish/guile.vim")
(license license:expat))))
+
+(define-public vim-dhall-vim
+ (let ((commit "68500ef46ff3706f46c99db3be7a0c8abcf6a3ae")
+ (revision "1"))
+ (package
+ (name "vim-dhall-vim")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vmchale/dhall-vim")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "0lwna4kcq7davfvh3535n8wl9jxkjm7cg6jgpisd17kvagihh8qw"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "dhall-vim"))
+ (synopsis "Vim configuration for Dhall")
+ (description
+ "A vim plugin to provide support and syntax hightlighting for the Dhall
+programming language")
+ (home-page "https://github.com/vmchale/dhall-vim")
+ (license license:bsd-3))))