mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-a.
* gnu/packages/emacs.scm (emacs-a): New variable.
This commit is contained in:
parent
8fc78612b5
commit
d4f7b7e127
1 changed files with 23 additions and 0 deletions
|
@ -811,6 +811,29 @@ different tools. It highlights errors and warnings inline in the buffer, and
|
||||||
provides an optional IDE-like error list.")
|
provides an optional IDE-like error list.")
|
||||||
(license license:gpl3+))) ;+GFDLv1.3+ for the manual
|
(license license:gpl3+))) ;+GFDLv1.3+ for the manual
|
||||||
|
|
||||||
|
(define-public emacs-a
|
||||||
|
(package
|
||||||
|
(name "emacs-a")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/plexus/a.el.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/plexus/a.el/")
|
||||||
|
(synopsis
|
||||||
|
"Emacs library for dealing with association lists and hash tables")
|
||||||
|
(description "@code{emacs-a} provides Emacs Lisp functions for dealing
|
||||||
|
with associative structures in a uniform and functional way. These functions
|
||||||
|
can take association lists, hash tables, and in some cases vectors (where the
|
||||||
|
index is considered the key).")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Web browsing.
|
;;; Web browsing.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue