emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#66588: closed ([PATCH] gnu: Add emacs-nerd-icons.)


From: GNU bug Tracking System
Subject: bug#66588: closed ([PATCH] gnu: Add emacs-nerd-icons.)
Date: Mon, 23 Oct 2023 21:49:02 +0000

Your message dated Mon, 23 Oct 2023 23:47:46 +0200
with message-id <87fs21dn99.fsf@gnu.org>
and subject line Re: [bug#66588] [PATCH] gnu: Add emacs-nerd-icons.
has caused the debbugs.gnu.org bug report #66588,
regarding [PATCH] gnu: Add emacs-nerd-icons.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
66588: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66588
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-nerd-icons. Date: Tue, 17 Oct 2023 11:53:01 +0200
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bb8c25f9b5..97a926aee4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28090,6 +28090,29 @@ (define-public emacs-editorconfig
 files are easily readable and they work nicely with version control systems.")
     (license license:gpl3+)))
 
+(define-public emacs-nerd-icons
+  (package
+    (name "emacs-nerd-icons")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rainstormstudio/nerd-icons.el";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0ggj6lm02m7nb5gxnqs2v2lkxsclml6kq176vam9qyg1fsm7yvdw"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:include #~(cons "^data\\/" %default-include)))
+    (home-page "https://github.com/rainstormstudio/nerd-icons";)
+    (synopsis "Library for easily using nerd font icons inside Emacs")
+    (description "Nerd-icons an alternative to all-the-icons.  It works on both
+GUI and terminal, and requires a nerd font installed on your system.")
+    (license license:gpl3+)))
+
 (define-public emacs-all-the-icons
   (package
     (name "emacs-all-the-icons")

base-commit: 0e467b7b0bc02860f2819e4eaf74f5cdae7e2cd1
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#66588] [PATCH] gnu: Add emacs-nerd-icons. Date: Mon, 23 Oct 2023 23:47:46 +0200 User-agent: Gnus/5.13 (Gnus v5.13)
Hi,

Cayetano Santos <csantosb@inventati.org> skribis:

> * gnu/packages/emacs-xyz.scm (emacs-nerd-icons): New variable.

The home page was 404 so I fixed it and factorize it (see below).

Applied, thanks!

Ludo’.

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0fda4db0d4..c0bb3f7d0a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28176,12 +28176,11 @@ (define-public emacs-nerd-icons
   (package
     (name "emacs-nerd-icons")
     (version "0.1.0")
+    (home-page "https://github.com/rainstormstudio/nerd-icons.el";)
     (source
      (origin
        (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/rainstormstudio/nerd-icons.el";)
-             (commit version)))
+       (uri (git-reference (url home-page) (commit version)))
        (file-name (git-file-name name version))
        (sha256
         (base32
@@ -28189,7 +28188,6 @@ (define-public emacs-nerd-icons
     (build-system emacs-build-system)
     (arguments
      (list #:include #~(cons "^data\\/" %default-include)))
-    (home-page "https://github.com/rainstormstudio/nerd-icons";)
     (synopsis "Library for easily using nerd font icons inside Emacs")
     (description "Nerd-icons an alternative to all-the-icons.  It works on both
 GUI and terminal, and requires a nerd font installed on your system.")

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]