mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add emacs-math-symbol-lists.
* gnu/packages/emacs-xyz.scm (emacs-math-symbol-lists): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
c07f3113d9
commit
16fdde79ec
1 changed files with 22 additions and 0 deletions
|
@ -3389,6 +3389,28 @@ (define-public emacs-company-quickhelp
|
|||
completion candidate when using the Company text completion framework.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-math-symbol-lists
|
||||
(let ((commit "dc7531cff0c845d5470a50c24d5d7309b2ced7eb")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-math-symbol-lists")
|
||||
(version (git-version "1.2.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vspinu/math-symbol-lists.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "094m21i9rns6m59cmhxcivxxafbg52w8f8na4y3v47aq67zmhhqm"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/vspinu/math-symbol-lists")
|
||||
(synopsis "Lists of Unicode math symbols and @code{LaTeX} commands")
|
||||
(description "This is a storage package used by completion engines like
|
||||
@code{company-math}.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-multiple-cursors
|
||||
(package
|
||||
(name "emacs-multiple-cursors")
|
||||
|
|
Loading…
Reference in a new issue