From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53118) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmHm3-0000wS-6t for guix-patches@gnu.org; Mon, 28 Aug 2017 07:00:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmHlz-0005pY-6T for guix-patches@gnu.org; Mon, 28 Aug 2017 07:00:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50194) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dmHlz-0005pP-3g for guix-patches@gnu.org; Mon, 28 Aug 2017 07:00:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dmHly-0007kh-T3 for guix-patches@gnu.org; Mon, 28 Aug 2017 07:00:02 -0400 Subject: [bug#28201] [PATCH] gnu: Add emacs-wgrep. References: <20170823093605.8868-1-mail@cbaines.net> In-Reply-To: <20170823093605.8868-1-mail@cbaines.net> Resent-Message-ID: From: Christopher Baines Date: Mon, 28 Aug 2017 11:59:27 +0100 Message-Id: <20170828105927.28246-1-mail@cbaines.net> 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: 28201@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-wgrep): New variable. --- gnu/packages/emacs.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 140a53205..66eca3aab 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3447,6 +3447,27 @@ Dust.js, React/JSX, Angularjs, ejs, etc.") (home-page "http://web-mode.org/") (license license:gpl3+))) +(define-public emacs-wgrep + (package + (name "emacs-wgrep") + (version "2.1.10") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/mhayashi1120/Emacs-wgrep/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1r2bpypar70xg6dsx12x1k74f39ww930rday7rgqpyknzsx1k4l1")))) + (build-system emacs-build-system) + (home-page "https://github.com/mhayashi1120/Emacs-wgrep") + (synopsis "Edit a grep buffer and apply those changes to the files") + (description + "Emacs wgrep allows you to edit a grep buffer and apply those changes to +the file buffer.") + (license license:gpl3+))) + (define-public emacs-helm (package (name "emacs-helm") -- 2.14.1