From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56689) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOaFQ-00009E-2C for guix-patches@gnu.org; Wed, 15 Apr 2020 01:06:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOaFO-0005ep-QP for guix-patches@gnu.org; Wed, 15 Apr 2020 01:06:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOaFO-0005eT-N3 for guix-patches@gnu.org; Wed, 15 Apr 2020 01:06:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOaFO-00009h-I3 for guix-patches@gnu.org; Wed, 15 Apr 2020 01:06:02 -0400 Subject: [bug#40635] [PATCH] gnu: Add emacs-moody. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56479) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOaEQ-0008Sv-RO for guix-patches@gnu.org; Wed, 15 Apr 2020 01:05:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOaEP-0004dE-EA for guix-patches@gnu.org; Wed, 15 Apr 2020 01:05:02 -0400 Received: from mout02.posteo.de ([185.67.36.66]:42983) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jOaEO-0004b4-Tp for guix-patches@gnu.org; Wed, 15 Apr 2020 01:05:01 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 316922400FC for ; Wed, 15 Apr 2020 07:04:58 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4929Jn1YzRz9rxP for ; Wed, 15 Apr 2020 07:04:56 +0200 (CEST) From: Alberto Eleuterio Flores Guerrero Date: Wed, 15 Apr 2020 00:04:47 -0500 Message-Id: <20200415050447.14598-1-barbanegra+guix@posteo.mx> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 40635@debbugs.gnu.org * gnu/packages/emacs-xyz.scm (emacs-moody): New variable. --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a9550ee112..364cec47da 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -507,6 +507,33 @@ Alternatively the menu can be bound globally, for ex= ample: @code{(global-set-key [S-down-mouse-3] 'minions-minor-modes-menu)}.") (license license:gpl3+))) =20 +(define-public emacs-moody + (let ((commit "2751d36152abcc2ac1479225392182b53f1e02dd") + (revision "1")) + (package + (name "emacs-moody") + ;; version 4.0 is a bit old (2018) + (version (git-version "0.5.3" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tarsius/moody.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xyw4l42053595r76lj8safsx6pj25as0107wd96by3h7dg9m586"= )))) + (build-system emacs-build-system) + (home-page "https://github.com/tarsius/moody") + (synopsis "Tabs and ribbons for Emacs mode-line") + (description + "@code{emacs-moody} provides utilities for displaying elements of +the mode line as tabs and ribbons. It also provides replacements for a = few +built-in elements. The biggest differences to similar packages is that +this one is much simpler and much more consistent. When using this pack= age, +then only the color of the mode line changes when a window becomes in-/a= ctive.") + (license license:gpl3+)))) + (define-public emacs-treepy (package (name "emacs-treepy") --=20 2.26.0