diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-20 19:11:19 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-04-16 17:02:33 +0300 |
commit | 086bfb37af3db6833992bfb0321713c74690d994 (patch) | |
tree | eae86fb3d4d78af096cb1058130db52dbeaa17e7 /gnu/packages | |
parent | 892527829cfeff76919e0779ba0997ccdd7424f3 (diff) | |
download | guix-086bfb37af3db6833992bfb0321713c74690d994.tar.gz guix-086bfb37af3db6833992bfb0321713c74690d994.zip |
gnu: Add emacs-pg.
* gnu/packages/emacs.scm (emacs-pg): New public variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index fa05b983db..c455a142d6 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7645,3 +7645,23 @@ and can be consulted and modified.") (description "@code{anzu} provides a minor mode that displays the current match and total match information in the mode-line in various search modes.") (license license:gpl3+))) + +(define-public emacs-pg + (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d")) + (package + (name "emacs-pg") + (version (git-version "0.1" "1" commit)) + (source (origin + (method git-fetch) + (uri (git-reference (url "https://github.com/cbbrowne/pg.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0")))) + (build-system emacs-build-system) + (home-page "https://github.com/cbbrowne/pg.el") + (synopsis "Emacs Lisp interface for PostgreSQL") + (description + "This package provides an Emacs Lisp interface for PostgreSQL.") + (license license:gpl3+)))) |