From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL6r4-0001t5-IG for guix-patches@gnu.org; Tue, 22 May 2018 08:57:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL6r0-0003QX-D4 for guix-patches@gnu.org; Tue, 22 May 2018 08:57:30 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35880) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL6qc-0003HN-JT for guix-patches@gnu.org; Tue, 22 May 2018 08:57:26 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL6qc-0001cG-Cu for guix-patches@gnu.org; Tue, 22 May 2018 08:57:02 -0400 Subject: [bug#31500] [PATCH 20/20] gnu: Add Add emacs-wgrep-helm. Resent-Message-ID: References: <20180518184910.9987-1-ambrevar@gmail.com> <20180522104133.26049-1-ambrevar@gmail.com> <20180522104133.26049-20-ambrevar@gmail.com> From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur In-reply-to: <20180522104133.26049-20-ambrevar@gmail.com> Date: Tue, 22 May 2018 14:56:33 +0200 Message-ID: <87603f3l32.fsf@lassieur.org> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Pierre Neidhardt Cc: 31500@debbugs.gnu.org Pierre Neidhardt writes: > * gnu/packages/emacs.scm (emacs-wgrep-helm). here you forgot ': New variable' :-) ---^ > --- > gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 7f502022f..ed3ab8e2b 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -11065,3 +11065,29 @@ e.g. the package dependencies it requires. See function > @code{package-lint-buffer}. Checks will currently be enabled only if a > \"Package-Requires:\" or \"Package-Version:\" header is present in the file. ") > (license license:gpl3+))) > + > +(define-public emacs-wgrep-helm > + (package > + (name "emacs-wgrep-helm") > + (version "20170510.1539") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://melpa.org/packages/wgrep-helm-" > + version > + ".el")) > + (sha256 > + (base32 > + "0yaf976nvidwrkmflhrg2arhnrz7kn4fk2dk68082dk26ra74a0n")))) > + (build-system emacs-build-system) > + (propagated-inputs > + `(("emacs-wgrep" ,emacs-wgrep))) > + (home-page > + "https://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep-helm.el") > + (synopsis > + "Writable helm-grep-mode buffer and apply the changes to files") > + (description > + "@code{wgrep-helm} allows you to edit a @code{helm-grep-mode} buffer and > +apply those changes to the file buffer.") > + (license license:gpl3+)))