summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodion Goritskov <rodion.goritskov@gmail.com>2023-12-09 23:08:13 +0400
committerRodion Goritskov <rodion.goritskov@gmail.com>2023-12-09 23:08:13 +0400
commitd65db3a7192cc679eef4f45a359dd529f428451d (patch)
tree0e93874d364379d3c37b8ce81808b6e7d6c9f451
parent9d284d9fe31cc32cda8dd429dddd6fb3e01a6d96 (diff)
Add emacs-yaml-pro package
-rw-r--r--rodion/packages/emacs.scm31
1 files changed, 30 insertions, 1 deletions
diff --git a/rodion/packages/emacs.scm b/rodion/packages/emacs.scm
index e207eb2..5f89ce3 100644
--- a/rodion/packages/emacs.scm
+++ b/rodion/packages/emacs.scm
@@ -2,7 +2,9 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix git-download)
- #:use-module (guix build-system emacs))
+ #:use-module (guix build-system emacs)
+ #:use-module (gnu packages emacs-xyz)
+ #:use-module (guix gexp))
(define-public emacs-mood-one-theme
(package
@@ -26,3 +28,30 @@
(description
"mood-one-theme is a dark color scheme that aims to replicate some of the features of the Doom One theme.")
(license license:unlicense)))
+
+(define-public emacs-yaml-pro
+ (package
+ (name "emacs-yaml-pro")
+ (version "0.3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zkry/yaml-pro")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ml7rp89alx6g1c5n325gzygwlgywxa40qf8xc0ag4nwzyp6z109"))))
+ (build-system emacs-build-system)
+ (inputs (list emacs-yaml)
+ )
+ (arguments
+ (list
+ #:tests? #false))
+ (home-page "https://github.com/zkry/yaml-pro")
+ (synopsis "Tools for editing YAML leveraging tree-sitter/parser")
+ (description
+ "yaml-pro is a package that provides conveniences for editing yaml.
+
+This package has been written to leverage tree-sitter parsing facilities, allowing all of these actions to be performed fast and accurate, even in the absence of parsing errors. The tree-sitter version is orders of magnitudes faster and I highly recommend its usage if your Emacs version permits.")
+ (license license:gpl3)))