From 3ceca9393c4d24c97da0478edbfc60816c8d56c8 Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Thu, 14 Dec 2017 05:23:49 +0300 Subject: wigust: Add emacs-epkg. * wigust/packages/emacs.scm (emacs-epkg): New variable. --- wigust/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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+))) -- cgit v1.2.3