From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42233) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL8Aw-0003YU-Km for guix-patches@gnu.org; Tue, 22 May 2018 10:22:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL8As-0006ud-FN for guix-patches@gnu.org; Tue, 22 May 2018 10:22:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36364) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL8As-0006uV-Bv for guix-patches@gnu.org; Tue, 22 May 2018 10:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL8As-0003ga-3l for guix-patches@gnu.org; Tue, 22 May 2018 10:22:02 -0400 Subject: [bug#31553] [PATCH 20/20] gnu: Add Add emacs-wgrep-helm. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42087) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL8AQ-0003EB-FJ for guix-patches@gnu.org; Tue, 22 May 2018 10:21:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL8AP-0006f3-Ak for guix-patches@gnu.org; Tue, 22 May 2018 10:21:34 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:33785) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL8AP-0006ef-2t for guix-patches@gnu.org; Tue, 22 May 2018 10:21:33 -0400 Received: by mail-wm0-x229.google.com with SMTP id x12-v6so16727772wmc.0 for ; Tue, 22 May 2018 07:21:33 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id 88-v6sm8199694wro.49.2018.05.22.07.21.31 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 22 May 2018 07:21:31 -0700 (PDT) From: Pierre Neidhardt Date: Tue, 22 May 2018 16:21:30 +0200 Message-Id: <20180522142130.8249-1-ambrevar@gmail.com> In-Reply-To: <87603f3l32.fsf@lassieur.org> References: <87603f3l32.fsf@lassieur.org> 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: 31553@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-wgrep-helm): 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+))) -- 2.17.0