mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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:
parent
88299bbe24
commit
6ad918c0de
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue