[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-sqlite.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-sqlite. |
Date: |
Thu, 01 Oct 2020 08:41:40 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 031f705 gnu: Add emacs-sqlite.
031f705 is described below
commit 031f705a438e25af3b0fd1fe1b6453c4531608e0
Author: Adam <rndd@tuta.io>
AuthorDate: Sun Sep 27 16:16:11 2020 +0300
gnu: Add emacs-sqlite.
* gnu/packages/emacs-xyz.scm (emacs-sqlite): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2b3247f..e3ec431 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4142,6 +4142,30 @@ read from small to large monitors by using colors, a
prefix feature, and smart
truncation.")
(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
(let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
(revision "0"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-sqlite.,
guix-commits <=