guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#58157] [PATCH 1/2] gnu: Add emacs-elquery.


From: jgart
Subject: [bug#58157] [PATCH 1/2] gnu: Add emacs-elquery.
Date: Wed, 28 Sep 2022 23:50:39 -0500

* gnu/packages/emacs-xyz.scm (emacs-elquery): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fef37627f3..3f6c95e79e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8476,6 +8476,30 @@ (define-public emacs-company-jedi
      "This package provides a Company backend for Python.")
     (license license:gpl3+)))
 
+(define-public emacs-elquery
+  (package
+    (name "emacs-elquery")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/AdamNiederer/elquery";)
+         (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "035zjzmd7yfw0rsjpaklc2wwiqw6brkjadch9x8n8n2gjyxg05mn"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-dash))
+    (home-page "https://github.com/AdamNiederer/elquery/";)
+    (synopsis "Read and manipulate HTML in Emacs")
+    (description
+"@code{emacs-elquery} is a library that lets you parse, query, set, and
+format HTML using Emacs Lisp.  It implements most of the @code{querySelector}
+API with @code{elquery-$}, and can get and set HTML attributes.")
+    (license license:gpl3+)))
+
 (define-public emacs-puppet-mode
   (package
     (name "emacs-puppet-mode")
-- 
2.37.3






reply via email to

[Prev in Thread] Current Thread [Next in Thread]