gnu: Add emacs-sqlite.
* gnu/packages/emacs-xyz.scm (emacs-sqlite): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
a76e9d13e9
commit
031f705a43
1 changed files with 24 additions and 0 deletions
|
@ -4142,6 +4142,30 @@ (define-public emacs-smart-mode-line
|
||||||
truncation.")
|
truncation.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public emacs-sqlite
|
||||||
|
;; XXX: There is no tagged commit.
|
||||||
|
(let ((commit "dad42b8bbca4994be1871343dd18fd6528ee5797")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "emacs-sqlite")
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(version (git-version "1.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/cnngimenez/sqlite.el")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "06ln4vijl8kii3nzc5cscgsadx1fqgxksflijd3ain83bn8g4wrd"))))
|
||||||
|
(home-page "https://gitlab.com/cnngimenez/sqlite.el")
|
||||||
|
(synopsis "SQLite interface for Emacs Lisp")
|
||||||
|
(description "Emacs SQLite is a simple SQLite interface for connecting
|
||||||
|
and retrieving information using the SQLite program through Elisp programming.
|
||||||
|
It is not intended as a user interface.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-sr-speedbar
|
(define-public emacs-sr-speedbar
|
||||||
(let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
|
(let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Reference in a new issue