diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-12-14 05:23:49 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-12-14 05:23:49 +0300 |
| commit | 3ceca9393c4d24c97da0478edbfc60816c8d56c8 (patch) | |
| tree | b9110f5140a22aa5b5101f3f6446069e710aa05f | |
| parent | wigust: Add emacs-emacsql-sqlite. (diff) | |
| download | guix-wigust-wip-emacs-epkg.tar.gz | |
wigust: Add emacs-epkg.origin/wip-emacs-epkgwip-emacs-epkg
* wigust/packages/emacs.scm (emacs-epkg): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 5d5d2a0..c97c58a 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -2847,3 +2847,28 @@ Documentation will be written once the API has been stabilized. ") (license license:gpl3+))) +(define-public emacs-epkg + (package + (name "emacs-epkg") + (version "3.0.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/emacscollective/epkg/archive/" + "v" version ".tar.gz")) + (sha256 + (base32 + "1yy7lw4ggy0f5775ywy4j9n0z8hqpyhk3igl7gn3i54p2cj3pby5")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-closql" ,emacs-closql) + ("emacs-dash" ,emacs-dash))) + (home-page "https://github.com/emacscollective/epkg/") + (synopsis "Browse the Emacsmirror package database") + (description "@code{epkg} provides access to a local copy of the +Emacsmirror package database. It provides low-level functions for +querying the database and a package.el-like user interface for +browsing the available packages. + +Read more @url{https://emacsmirror.net/manual/epkg/}.") + (license license:gpl3+))) |
