From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54789) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkSC-0007s2-2y for guix-patches@gnu.org; Fri, 18 May 2018 14:50:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkSB-0000hI-5i for guix-patches@gnu.org; Fri, 18 May 2018 14:50:12 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60508) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkSB-0000gu-1u for guix-patches@gnu.org; Fri, 18 May 2018 14:50:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkSA-0001TI-Pt for guix-patches@gnu.org; Fri, 18 May 2018 14:50:10 -0400 Subject: [bug#31508] [PATCH 21/21] gnu: emacs-wgrep-helm: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54324) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRP-0006a1-J1 for guix-patches@gnu.org; Fri, 18 May 2018 14:49:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRO-0008MK-Hp for guix-patches@gnu.org; Fri, 18 May 2018 14:49:23 -0400 Received: from mail-wr0-x22d.google.com ([2a00:1450:400c:c0c::22d]:35597) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRO-0008Kz-Bb for guix-patches@gnu.org; Fri, 18 May 2018 14:49:22 -0400 Received: by mail-wr0-x22d.google.com with SMTP id i14-v6so10161763wre.2 for ; Fri, 18 May 2018 11:49:22 -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 q2-v6sm8369863wrj.57.2018.05.18.11.49.20 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:20 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:48:59 +0200 Message-Id: <20180518184910.9987-10-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> 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: 31508@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 1b598ea94..9d09dd098 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -11062,3 +11062,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