diff mbox series

[bug#42892] gnu: Add emacs-fancy-battery.

Message ID 87364ml9sk.fsf@gmx.com
State Accepted
Headers show
Series [bug#42892] gnu: Add emacs-fancy-battery. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch fail View Laminar job

Commit Message

Pierre Langlois Aug. 16, 2020, 6:34 p.m. UTC
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Hello Guix!

Here's a quick patch adding the "emacs-fancy-battery" package. It's
unmaintained I'm afraid, but it does work and is supported by spaceline
(https://github.com/TheBB/spaceline#fancy-battery) so it's quite nice to
have.

Thanks,
Pierre

-----BEGIN PGP SIGNATURE-----

iQEzBAEBCAAdFiEEctU9gYy29KFyWDdMqPyeRH9PfVQFAl85fCsACgkQqPyeRH9P
fVS8Hgf+PAE5GkUUAgzKdCeMwGvH+h5Ti+FpDB4SyYq/d/Wc036jp2d/Un6ArrJu
y1VpebETJ/tnKxk/jEeuZhy6qCsrBZXO9L3ptIXh5OTjppczNLSaCiM9QMXJwXxO
Nj9JWbZIi3jXyJ30nBZNLe+QGn8XuDD7b92FMbWLwtZz2Aa3RTQb/jJkKu+qzfAk
4n4OcFAbv0NgyfhCN8UUAj8l87SDew3iG3P3w1GTLPKY/v9Na6eAvHnwkCEeGPO+
bh9njVgdHhPJghcvJRPlzMykCn5j1yHYObblYceEbMgI9INX3ExNrwr2yqcyrW0Y
e9U+aPFT9/jKKs+Gr3hgNt24T8HsLQ==
=5Og7
-----END PGP SIGNATURE-----

Comments

Oleg Pykhalov Aug. 17, 2020, 7:50 a.m. UTC | #1
Hello,

Pierre Langlois <pierre.langlois@gmx.com> writes:

> Here's a quick patch adding the "emacs-fancy-battery" package. It's
> unmaintained I'm afraid, but it does work and is supported by spaceline
> (https://github.com/TheBB/spaceline#fancy-battery) so it's quite nice to
> have.

It compiles with Emacs 27 and 26.  Applied.

Thanks,
Oleg.
Brett Gilio Aug. 17, 2020, 6:40 p.m. UTC | #2
Oleg Pykhalov <go.wigust@gmail.com> writes:

> Hello,
>
> Pierre Langlois <pierre.langlois@gmx.com> writes:
>
>> Here's a quick patch adding the "emacs-fancy-battery" package. It's
>> unmaintained I'm afraid, but it does work and is supported by spaceline
>> (https://github.com/TheBB/spaceline#fancy-battery) so it's quite nice to
>> have.
>
> It compiles with Emacs 27 and 26.  Applied.
>
> Thanks,
> Oleg.

I could have sworn we had this in the guix definitions, but it was
removed precisely because it was unmaintained. But looking through the
logs I don't see this. So maybe I am misremembering.
diff mbox series

Patch

From bb53286fef234f0ff6ea45c2cae9741ed31e7e84 Mon Sep 17 00:00:00 2001
From: Pierre Langlois <pierre.langlois@gmx.com>
Date: Sun, 16 Aug 2020 19:19:09 +0100
Subject: [PATCH] gnu: Add emacs-fancy-battery.

* gnu/packages/emacs-xyz.scm (emacs-fancy-battery): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 79157e28e9..4dd3af104c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15461,6 +15461,28 @@  files.")
 duplicate hook and function names further into a single declarative call.")
     (license license:gpl3+)))

+(define-public emacs-fancy-battery
+  (package
+    (name "emacs-fancy-battery")
+    (version "0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacsorphanage/fancy-battery")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/emacsorphanage/fancy-battery")
+    (synopsis "Display battery status in Emacs mode line")
+    (description "This package provides @code{fancy-battery-mode} which is
+like the built-in @code{display-battery-mode}, but more fancy.  It just the
+remaining time, uses colours to indicate the status of the battery, and is
+more customizable.")
+    (license license:gpl3)))
+
 (define-public emacs-fancy-narrow
   (package
     (name "emacs-fancy-narrow")
--
2.28.0