all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1.
@ 2023-10-17  9:58 Cayetano Santos via Guix-patches via
  2023-10-20  9:28 ` Christopher Baines
  2023-10-25  9:52 ` bug#66590: " Mathieu Othacehe
  0 siblings, 2 replies; 5+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2023-10-17  9:58 UTC (permalink / raw)
  To: 66590; +Cc: Cayetano Santos

* gnu/packages/emacs-xyz.scm (emacs-doom-modeline): Update to 4.0.1.
---
 gnu/packages/emacs-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bb8c25f9b5..f91c73571e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -33894,7 +33894,7 @@ (define-public emacs-telega-contrib
 (define-public emacs-doom-modeline
   (package
     (name "emacs-doom-modeline")
-    (version "3.4.0")
+    (version "4.0.1")
     (source
      (origin
        (method git-fetch)
@@ -33902,14 +33902,14 @@ (define-public emacs-doom-modeline
              (url "https://github.com/seagle0128/doom-modeline")
              (commit (string-append "v" version))))
        (sha256
-        (base32 "1z5cqn33v7sjihs05ycz1yzi5wcg90yn3cy09qj9g5g8pjs8qdki"))
+        (base32 "0pwfmj01cqij84dig5qj86n7f4cva5mdjqahr0061byrlv9xrpzb"))
        (file-name (git-file-name name version))))
     (build-system emacs-build-system)
     (arguments
      `(#:test-command '("ert-runner")))
     (native-inputs (list emacs-ert-runner))
     (propagated-inputs
-     (list emacs-all-the-icons emacs-compat emacs-dash emacs-shrink-path))
+     (list emacs-nerd-icons emacs-compat 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

base-commit: 0e467b7b0bc02860f2819e4eaf74f5cdae7e2cd1
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1.
  2023-10-17  9:58 [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1 Cayetano Santos via Guix-patches via
@ 2023-10-20  9:28 ` Christopher Baines
  2023-10-20 14:47   ` Cayetano Santos via Guix-patches via
  2023-10-25  9:52 ` bug#66590: " Mathieu Othacehe
  1 sibling, 1 reply; 5+ messages in thread
From: Christopher Baines @ 2023-10-20  9:28 UTC (permalink / raw)
  To: Cayetano Santos; +Cc: 66590

[-- Attachment #1: Type: text/plain, Size: 1848 bytes --]


Cayetano Santos via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-doom-modeline): Update to 4.0.1.
> ---
>  gnu/packages/emacs-xyz.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index bb8c25f9b5..f91c73571e 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -33894,7 +33894,7 @@ (define-public emacs-telega-contrib
>  (define-public emacs-doom-modeline
>    (package
>      (name "emacs-doom-modeline")
> -    (version "3.4.0")
> +    (version "4.0.1")
>      (source
>       (origin
>         (method git-fetch)
> @@ -33902,14 +33902,14 @@ (define-public emacs-doom-modeline
>               (url "https://github.com/seagle0128/doom-modeline")
>               (commit (string-append "v" version))))
>         (sha256
> -        (base32 "1z5cqn33v7sjihs05ycz1yzi5wcg90yn3cy09qj9g5g8pjs8qdki"))
> +        (base32 "0pwfmj01cqij84dig5qj86n7f4cva5mdjqahr0061byrlv9xrpzb"))
>         (file-name (git-file-name name version))))
>      (build-system emacs-build-system)
>      (arguments
>       `(#:test-command '("ert-runner")))
>      (native-inputs (list emacs-ert-runner))
>      (propagated-inputs
> -     (list emacs-all-the-icons emacs-compat emacs-dash emacs-shrink-path))
> +     (list emacs-nerd-icons emacs-compat 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
>
> base-commit: 0e467b7b0bc02860f2819e4eaf74f5cdae7e2cd1

emacs-nerd-icons doesn't seem to be defined, so this change doesn't work
for me. Did emacs-doom-modeline build for you locally?

Thanks,

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1.
  2023-10-20  9:28 ` Christopher Baines
@ 2023-10-20 14:47   ` Cayetano Santos via Guix-patches via
  2023-10-24  6:47     ` Cayetano Santos via Guix-patches via
  0 siblings, 1 reply; 5+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2023-10-20 14:47 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 66590


>ven. 20 oct. 2023 at 10:28, Christopher Baines <mail@cbaines.net> wrote:

> emacs-nerd-icons doesn't seem to be defined, so this change doesn't work
> for me. Did emacs-doom-modeline build for you locally?

I submitted another patch for packaging emacs-nerd-icons, see #66588.

C.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1.
  2023-10-20 14:47   ` Cayetano Santos via Guix-patches via
@ 2023-10-24  6:47     ` Cayetano Santos via Guix-patches via
  0 siblings, 0 replies; 5+ messages in thread
From: Cayetano Santos via Guix-patches via @ 2023-10-24  6:47 UTC (permalink / raw)
  To: mail, 66590


>ven. 20 oct. 2023 at 16:47, Cayetano Santos <csantosb@inventati.org> wrote:

>>ven. 20 oct. 2023 at 10:28, Christopher Baines <mail@cbaines.net> wrote:
>
>> emacs-nerd-icons doesn't seem to be defined, so this change doesn't work
>> for me. Did emacs-doom-modeline build for you locally?
>
> I submitted another patch for packaging emacs-nerd-icons, see #66588.

The patch is accepted, and emacs-nerd-icons is now part of guix.

C.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#66590: [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1.
  2023-10-17  9:58 [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1 Cayetano Santos via Guix-patches via
  2023-10-20  9:28 ` Christopher Baines
@ 2023-10-25  9:52 ` Mathieu Othacehe
  1 sibling, 0 replies; 5+ messages in thread
From: Mathieu Othacehe @ 2023-10-25  9:52 UTC (permalink / raw)
  To: Cayetano Santos; +Cc: 66590-done


> * gnu/packages/emacs-xyz.scm (emacs-doom-modeline): Update to 4.0.1.

Applied, thanks,

Mathieu




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-10-25  9:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-17  9:58 [bug#66590] [PATCH] gnu: emacs-doom-modeline: Update to 4.0.1 Cayetano Santos via Guix-patches via
2023-10-20  9:28 ` Christopher Baines
2023-10-20 14:47   ` Cayetano Santos via Guix-patches via
2023-10-24  6:47     ` Cayetano Santos via Guix-patches via
2023-10-25  9:52 ` bug#66590: " Mathieu Othacehe

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.