From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Baines Subject: [PATCH] gnu: Add emacs-git-gutter Date: Fri, 30 Dec 2016 20:29:27 +0000 Message-ID: <20161230202927.21368-1-mail@cbaines.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cN3nz-00021W-6I for guix-devel@gnu.org; Fri, 30 Dec 2016 15:29:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cN3nu-0003v8-5N for guix-devel@gnu.org; Fri, 30 Dec 2016 15:29:35 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:42297 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cN3nt-0003ue-VY for guix-devel@gnu.org; Fri, 30 Dec 2016 15:29:30 -0500 Received: from localhost (190.85.159.143.dyn.plus.net [143.159.85.190]) by mira.cbaines.net (Postfix) with ESMTPSA id D2A0213E356 for ; Fri, 30 Dec 2016 20:29:27 +0000 (GMT) Received: from Unknown-08-d4-0c-03-9f-a8.lan (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id aa30ac9f for ; Fri, 30 Dec 2016 20:29:27 +0000 (UTC) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-git-gutter): 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 5b6b9900a..f062a7557 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1414,6 +1414,32 @@ strings.") files and directories.") (license license:gpl3+))) +(define-public emacs-git-gutter + (package + (name "emacs-git-gutter") + (version "0.90") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/syohex/" name "/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg")))) + (build-system emacs-build-system) + (home-page "https://github.com/syohex/emacs-git-gutter") + (synopsis "See and manage hunks of text in a version control system") + (description + "This package is an Emacs minor mode for displaying and interacting with +hunks of text managed in a version control system. Added modified and deleted +areas can be indicated with symbols on the edge of the buffer, and commands +can be used to move between and perform actions on these hunks. + +Git, Mercurial, Subversion and Bazaar are supported, and many parts of the +display and behaviour is easily customisable.") + (license license:gpl3+))) + (define-public emacs-el-mock (package (name "emacs-el-mock") -- 2.11.0