From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43249) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jEo1H-0003LI-W4 for guix-patches@gnu.org; Thu, 19 Mar 2020 01:47:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jEo1G-0000j0-Rw for guix-patches@gnu.org; Thu, 19 Mar 2020 01:47:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35702) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jEo1G-0000gC-Jr for guix-patches@gnu.org; Thu, 19 Mar 2020 01:47:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jEo1G-0006X8-JC for guix-patches@gnu.org; Thu, 19 Mar 2020 01:47:02 -0400 Subject: [bug#40128] [PATCH 2/2] gnu: Add emacs-major-mode-hydra. Resent-Message-ID: References: <871rpoq4tj.fsf@lafreniere.xyz> From: "LaFreniere, Joseph" In-reply-to: <871rpoq4tj.fsf@lafreniere.xyz> Date: Thu, 19 Mar 2020 00:46:29 -0500 Message-ID: <87zhccoq16.fsf@lafreniere.xyz> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40128@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed Patch file is attached. -- Joseph LaFreniere --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0002-gnu-Add-emacs-major-mode-hydra.patch >From 387c56eaf4efe773065175b5db0dda0dc24c8dba Mon Sep 17 00:00:00 2001 From: Joseph LaFreniere Date: Wed, 18 Mar 2020 20:59:09 -0500 Subject: [PATCH 2/2] gnu: Add emacs-major-mode-hydra. * gnu/packages/emacs-xyz.scm (emacs-major-mode-hydra): New variable. gnu: Add emacs-major-mode-hydra. * gnu/packages/emacs-xyz.scm (emacs-major-mode-hydra): New variable. --- gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 54728d7165..74de919c80 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5610,6 +5610,26 @@ mode-specific key bindings. It is intended for use as a library only; see package @code{emacs-major-mode-hydra} for a user-friendly interface.") (license license:gpl3+))) +(define-public emacs-major-mode-hydra + (package + (inherit emacs-pretty-hydra) + (name "emacs-major-mode-hydra") + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-pretty-hydra" ,emacs-pretty-hydra))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'add-source-to-load-path 'remove-pretty-hydra + (lambda* (#:key outputs #:allow-other-keys) + ;; pretty-hydra is provided by dependency. + (delete-file "pretty-hydra.el") + #t))))) + (synopsis "Create nice-looking hydras") + (description + "This package provides the macro @code{pretty-hydra-define} to define +hydras with one column per group of heads."))) + (define-public emacs-ivy (package (name "emacs-ivy") -- 2.25.1 --=-=-=--