From b0a71125d45a43a464b72cf8262aebf874ce8bc3 Mon Sep 17 00:00:00 2001 From: humanitiesNerd Date: Thu, 26 May 2016 01:59:21 +0200 Subject: gnu: Add new variable (emacs-pkg-info). * gnu/packages/emacs.scm (emacs-pkg-info): New variable. --- diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index e513dc6..347a573 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1709,3 +1709,27 @@ The purpose of this library is to wrap all the quirks and hassle of package.el into a sane API.") (license license:gpl3+))) +(define-public emacs-pkg-info + (package + (name "emacs-pkg-info") + (version "0.6") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/lunaryorn/pkg-info.el/archive/" + version + ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-epl" ,emacs-epl))) + (home-page + "https://github.com/lunaryorn/pkg-info.el") + (synopsis "Information about packages") + (description + "This library extracts information from installed packages. +") + (license license:gpl3+))) -- 2.5.5