[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55460] [PATCH v2] gnu: emacs-doom-themes: Include extension files.
From: |
Dominic Martinez |
Subject: |
[bug#55460] [PATCH v2] gnu: emacs-doom-themes: Include extension files. |
Date: |
Mon, 16 May 2022 14:50:06 -0400 |
Newer versions of `emacs-doom-themes' separated extension support into a
separate directory, so this change includes those files.
---
Sorry, small amendment to the previous patch as I forgot to include my
copyright.
gnu/packages/emacs-xyz.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8d66278b8f..5e1f1f6c27 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -109,6 +109,7 @@
;;; Copyright © 2022 Brandon Lucas <br@ndon.dk>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27554,7 +27555,9 @@ (define-public emacs-doom-themes
;; EMACSLOADPATH.
(for-each (lambda (f)
(rename-file f (basename f)))
- (find-files "./themes" ".*\\.el$"))
+ (append
+ (find-files "./themes" ".*\\.el$")
+ (find-files "./extensions" ".*\\.el$")))
#t)))))
(synopsis "Wide collection of color themes for Emacs")
(description "Emacs-doom-themes contains numerous popular color themes
for
--
2.36.0