Ricardo Wurmus (2016-07-13 00:05 +0300) wrote: > * gnu/packages/emacs.scm (emacs-undercover): New variable. > --- > gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index ed3a1e3..f544721 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1418,6 +1418,31 @@ IRC bouncer with ERC.") > Emacs shell script.") > (license license:expat))) > > +(define-public emacs-undercover > + (package > + (name "emacs-undercover") > + (version "0.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/sviridov/undercover.el/" > + "archive/v" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a")))) > + (build-system emacs-build-system) > + (propagated-inputs > + `(("emacs-dash" ,emacs-dash) > + ("emacs-s" ,emacs-s)
The same comment: "emacs-s" is not needed for the end user, the package will work without it. > + ("emacs-shut-up" ,emacs-shut-up))) > + (home-page "https://github.com/sviridov/undercover.el") > + (synopsis "Test coverage library for Emacs Lisp") > + (description > + "Undercover is a test coverage library for software written in Emacs > +Lisp.") > + (license license:expat))) > + > (define-public emacs-paren-face > (package > (name "emacs-paren-face") -- Alex