From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47053) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYMeT-0001Sf-P8 for guix-patches@gnu.org; Fri, 22 Nov 2019 23:04:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYMeS-0008WG-Le for guix-patches@gnu.org; Fri, 22 Nov 2019 23:04:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46943) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iYMeS-0008Vz-HL for guix-patches@gnu.org; Fri, 22 Nov 2019 23:04:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iYMeP-00080j-QH for guix-patches@gnu.org; Fri, 22 Nov 2019 23:04:04 -0500 Subject: [bug#38339] [PATCH 2/2] gnu: Add emacs-doom-modeline. References: <87tv6vgs2w.fsf@posteo.net> In-Reply-To: <87tv6vgs2w.fsf@posteo.net> Resent-Message-ID: From: Brett Gilio Date: Fri, 22 Nov 2019 22:03:00 -0600 Message-ID: <87r21zgryj.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0002-gnu-Add-emacs-doom-modeline.patch Content-Description: [PATCH 2/2] gnu: Add emacs-doom-modeline. 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: 38339@debbugs.gnu.org >From 1ffd8682be2e9d11d54b26f2765464aab7a0b18e Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Fri, 22 Nov 2019 21:51:56 -0600 Subject: [PATCH 2/2] gnu: Add emacs-doom-modeline. * gnu/packages/emacs-xyz.scm (emacs-doom-modeline): New variable. --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c280d44f39..2bf7b0ab36 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19943,6 +19943,34 @@ Google guidelines.") (description "Helm Fish Completion is a Helm interface for Emacs fish-completion. It can be used in both Eshell and M-x shell.") (license license:gpl3+)))) + +(define-public emacs-doom-modeline + (package + (name "emacs-doom-modeline") + (version "2.7.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seagle0128/doom-modeline.git") + (commit (string-append "v" version)))) + (sha256 + (base32 + "16qlakgbwwjfr013g0cly4js4v9cfhxb8fn7zmn124f788m22357")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (arguments + `(#:test-command '("ert-runner"))) + (native-inputs `(("emacs-ert-runner" ,emacs-ert-runner))) + (propagated-inputs + `(("emacs-all-the-icons" ,emacs-all-the-icons) + ("emacs-shrink-path" ,emacs-shrink-path))) + (synopsis "Fancy and fast mode-line inspired by minimalism design") + (description "Doom modeline is a complete modeline for GNU Emacs inspired +by the Doom theme collection. This modeline features support for mode-specific +icon support, git integration, and several other utilities.") + (home-page "https://github.com/seagle0128/doom-modeline/") + (license license:gpl3+))) + (define-public emacs-shrink-path (package (name "emacs-shrink-path") -- 2.24.0