guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/08: gnu: Add emacs-edbi-sqlite.


From: guix-commits
Subject: 08/08: gnu: Add emacs-edbi-sqlite.
Date: Thu, 17 Jan 2019 06:21:09 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 3d540c48e7521713bea910fed6245c0468836cf2
Author: Pierre Neidhardt <address@hidden>
Date:   Thu Jan 17 12:20:16 2019 +0100

    gnu: Add emacs-edbi-sqlite.
    
    * gnu/packages/emacs-xyz.scm (emacs-edbi-sqlite): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5461a3a..a12a4e2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12818,3 +12818,26 @@ asynchronous communications, the RPC response is 
fairly good.")
       (description "This program connects the database server through Perl's
 DBI, and provides DB-accessing API and the simple management UI.")
       (license license:gpl3+))))
+
+(define-public emacs-edbi-sqlite
+  (let ((commit "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"))
+    (package
+      (name "emacs-edbi-sqlite")
+      (version (git-version "0.1.1" "1" commit))
+      (home-page "https://github.com/proofit404/edbi-sqlite";)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url home-page)
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"))
+                (file-name (git-file-name name version))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-edbi" ,emacs-edbi)))
+      (synopsis "Open SQLite files in Emacs")
+      (description "This package is a convenience wrapper for @command{edbi}
+to open SQLite databases.")
+      (license license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]