From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50146) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTOPD-00084b-En for guix-patches@gnu.org; Tue, 28 Apr 2020 07:28:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jTOPD-0005Ol-4H for guix-patches@gnu.org; Tue, 28 Apr 2020 07:28:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55851) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jTOPC-0005Og-Ns for guix-patches@gnu.org; Tue, 28 Apr 2020 07:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jTOPC-00044B-JE for guix-patches@gnu.org; Tue, 28 Apr 2020 07:28:02 -0400 Subject: [bug#40928] Subject: [PATCH 2/2] gnu: Add emacs-kakoune. References: <20200428131817.2141e9e5@airmail.cc> In-Reply-To: <20200428131817.2141e9e5@airmail.cc> Resent-Message-ID: Date: Tue, 28 Apr 2020 13:26:56 +0200 From: pinoaffe Message-ID: <20200428132656.6e975071@airmail.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: 40928@debbugs.gnu.org * gnu/packages/emacs-xyz.scm (emacs-kakoune): New variable. --- gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 37521e92d0..3faa5dd511 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -22613,3 +22613,33 @@ ryo-modal does not come with any predefined bindings! If you want bindings that only should be active when the region is active, please have a look at `selected-minor-mode' (https://github.com/Kungsgeten/selected.el).") (license license:expat))) + +(define-public emacs-kakoune + (package + (name "emacs-kakoune") + (version "20191017.1502") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/kakoune-" + version + ".tar")) + (sha256 + (base32 + "1srrrv4fxf99iypch6wyqmiyij4dmq0yrnqnim0y4q0dfvpj63r8")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-ryo-modal" ,emacs-ryo-modal) + ("emacs-multiple-cursors" ,emacs-multiple-cursors) + ("emacs-expand-region" ,emacs-expand-region))) + (home-page + "https://github.com/jmorag/kakoune.el") + (synopsis + "A simulation, but not emulation, of kakoune") + (description + "This package provides many, but not all of the editing primitives in the kakoune editor. +Unlike evil-mode for vim, this is very shallow emulation, and seeks to do as little +work as possible, leveraging Emacs native editing commmands and the work of other +packages wherever possible.") + (license license:expat))) -- 2.26.2