gnu: Add emacs-enlive.

* gnu/packages/emacs-xyz.scm (emacs-enlive): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
pinoaffe 2022-02-06 23:24:03 +01:00 committed by Nicolas Goaziou
parent 88299bbe24
commit 6ad918c0de
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -15492,6 +15492,28 @@ (define-public emacs-inheritenv
buffer's environment.")
(license license:gpl3+)))
(define-public emacs-enlive
(package
(name "emacs-enlive")
(version "0.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zweifisch/enlive")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"))))
(build-system emacs-build-system)
(home-page "http://github.com/zweifisch/enlive")
(synopsis "Query HTML document with CSS selectors in Emacs")
(description
"Enlive is an Emacs library that allows the user to query HTML documents
from within Elisp using a DSL similar to CSS selectors.")
(license license:gpl3+)))
(define-public emacs-envrc
(package
(name "emacs-envrc")