diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2020-07-30 00:20:43 +0100 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-08-02 18:05:44 +0300 |
commit | 9bddc4b2985128cf19c612b666a26874692b2789 (patch) | |
tree | fb07f769d332f6724ed19824f019ceb8450bfffd /gnu | |
parent | 587e0d911dfff81647015e89847084b606e68f71 (diff) | |
download | guix-9bddc4b2985128cf19c612b666a26874692b2789.tar.gz guix-9bddc4b2985128cf19c612b666a26874692b2789.zip |
gnu: Add emacs-emacsql-sqlite3.
* gnu/packages/emacs-xyz.scm (emacs-emacsql-sqlite3): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a90d789d7a..b8807528e0 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13572,6 +13572,45 @@ has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp object @code{nil} corresponds 1:1 with @code{NULL} in the database.") (license license:gpl3+))) +(define-public emacs-emacsql-sqlite3 + (package + (name "emacs-emacsql-sqlite3") + (version "1.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cireu/emacsql-sqlite3") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1yy9y27rckm776jnl2rh1fz3bh09690xwzq7102vlw7xkb9s7jhj")))) + (build-system emacs-build-system) + (native-inputs + `(("ert-runner" ,emacs-ert-runner))) + (inputs + `(("sqlite" ,sqlite))) + (propagated-inputs + `(("emacs-emacsql" ,emacs-emacsql))) + (arguments + `(#:tests? #t + #:test-command '("emacs" "-Q" "--batch" "-L" "." + "--load" "emacsql-sqlite3-test.el" + "-f" "ert-run-tests-batch-and-exit") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'embed-path-to-sqlite3 + (lambda _ + (substitute* "emacsql-sqlite3.el" + (("\\(executable-find \"sqlite3\"\\)") + (string-append "\"" (which "sqlite3") "\""))) + #t))))) + (home-page "https://github.com/cireu/emacsql-sqlite3") + (synopsis "EmacSQL backend for SQLite") + (description "This is yet another EmacSQL backend for SQLite which uses +official @command{sqlite3} executable to access SQL database.") + (license license:gpl3+))) + (define-public emacs-closql ;; Take a commit newer than 1.0.0 release because of Emacs upgrade to 26.3. (let ((commit "70b98dbae53611d10a461d9b4a6f71086910dcef")) |