>From 9ebce09ce3fd6d502598fc00c0456943897b8ba9 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 27 Sep 2020 16:16:11 +0300 Subject: [PATCH] gnu: Add emacs-sqlite.el * gnu/packages/emacs-xyz.scm (emacs-sqlite.el): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4ea5be4..9e91f6f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24755,3 +24755,25 @@ web development.") ;; file and the header of the main elisp file which indicates ;; that it is licensed under the GPL version 3 or later. (license (list license:mpl2.0 license:gpl3+))))) + +(define-public emacs-sqlite.el + (let ((commit "dad42b8bbca4994be1871343dd18fd6528ee5797") ;; there is no tagged commit + (revision "0")) + (package + (name "emacs-sqlite.el") + (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 Emas Lisp") + (description "@code{sqlite.el} is a simple SqliteInterface for connecting and retrieving +information using the SQLite program through Elisp programming. It is not intended as a user interface.") + (license license:gpl3+)))) -- 2.28.0