From f570c9a5a8f322bf67cd182903f6e27ddc11a2ac Mon Sep 17 00:00:00 2001 From: Nathan Merkley Date: Thu, 7 Dec 2023 09:54:06 -0700 Subject: [PATCH] gnu: Add vim-dhall-vim. * gnu/packages/vim.scm (vim-dhall-vim): New variable. Change-Id: I7bb32594546eb61f781d69a308aa866e4ce78de9 Signed-off-by: Greg Hogan --- gnu/packages/vim.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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))))