unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Jaeme Sifat via Guix-patches via <guix-patches@gnu.org>
To: 67983@debbugs.gnu.org
Cc: Jaeme Sifat <jaeme@runbox.com>, Andrew Tropin <andrew@trop.in>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Liliana Marie Prikler <liliana.prikler@gmail.com>
Subject: [bug#67983] [PATCH v2REVISION 1/6] gnu: Add emacs-nerd-icons-dired.
Date: Sat, 23 Dec 2023 16:23:43 -0500	[thread overview]
Message-ID: <811e0b5a6364e016b838041c4a4b29d97539659d.1703366019.git.jaeme@runbox.com> (raw)
In-Reply-To: <cover.1703366019.git.jaeme@runbox.com>

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

Change-Id: I787f5a025b2023159beeffe29ce40e4c970692dd
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2802a339ff..81a935cb7a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,31 @@ (define-public emacs-nerd-icons
 GUI and terminal, and requires a nerd font installed on your system.")
     (license license:gpl3+)))

+(define-public emacs-nerd-icons-dired
+  (let ((commit "c1c73488630cc1d19ce1677359f614122ae4c1b9")
+        (revision "0"))
+    (package
+      (name "emacs-nerd-icons-dired")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/rainstormstudio/nerd-icons-dired/")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1ln73ii7c3chl4lvarwiwrdmx49q528wc0h6a7xbl68pc2pyyvq2"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-nerd-icons))
+      (home-page "https://github.com/rainstormstudio/nerd-icons-dired/")
+      (synopsis "Allows nerd icons to be integrated into @code{dired-mode}")
+      (description
+       "@code{nerd-icons-dired} is inspired by @code{all-the-icons-dired} and
+works in the same way by adding icons to the @code{dired} buffer.  This
+requires a nerd font to be installed on your system.")
+      (license license:gpl3+))))
+
 (define-public emacs-all-the-icons
   (package
     (name "emacs-all-the-icons")
--
2.41.0




  reply	other threads:[~2023-12-23 21:27 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-23  4:54 [bug#67983] [PATCH 0/5] gnu: Nerdify Emacs Jaeme Sifat via Guix-patches via
2023-12-23  5:02 ` [bug#67983] [PATCH 1/5] gnu: Add emacs-nerd-icons-dired Jaeme Sifat via Guix-patches via
2023-12-23  5:02 ` [bug#67983] [PATCH 2/5] gnu: Add emacs-nerd-icons-corfu Jaeme Sifat via Guix-patches via
2023-12-23  5:02 ` [bug#67983] [PATCH 3/5] gnu: Add emacs-nerd-icons-ivy-rich Jaeme Sifat via Guix-patches via
2023-12-23  5:02 ` [bug#67983] [PATCH 4/5] gnu: Add emacs-nerd-icons-ibuffer Jaeme Sifat via Guix-patches via
2023-12-23  5:02 ` [bug#67983] [PATCH 5/5] gnu: Add emacs-nerd-icons-completion Jaeme Sifat via Guix-patches via
2023-12-23 10:59   ` Liliana Marie Prikler
2023-12-23  8:03 ` [bug#67983] [PATCH 0/5] gnu: Nerdify Emacs Liliana Marie Prikler
2023-12-23  8:25 ` Jaeme Sifat via Guix-patches via
2023-12-23 19:38 ` [bug#67983] [PATCH vREVISION 5/5] gnu: Add emacs-nerd-icons-completion Jaeme Sifat via Guix-patches via
2023-12-23 19:55   ` Liliana Marie Prikler
2023-12-23 21:23 ` [bug#67983] [PATCH v2REVISION 0/6] gnu: Nerdify Emacs Jaeme Sifat via Guix-patches via
2023-12-23 21:23   ` Jaeme Sifat via Guix-patches via [this message]
2023-12-23 21:23   ` [bug#67983] [PATCH v2REVISION 2/6] gnu: Add emacs-nerd-icons-corfu Jaeme Sifat via Guix-patches via
2023-12-23 21:23   ` [bug#67983] [PATCH v2REVISION 3/6] gnu: Add emacs-nerd-icons-ivy-rich Jaeme Sifat via Guix-patches via
2023-12-23 21:23   ` [bug#67983] [PATCH v2REVISION 4/6] gnu: Add emacs-nerd-icons-ibuffer Jaeme Sifat via Guix-patches via
2023-12-23 21:23   ` [bug#67983] [PATCH v2REVISION 5/6] gnu: Add emacs-nerd-icons-completion Jaeme Sifat via Guix-patches via
2023-12-23 21:23   ` [bug#67983] [PATCH v2REVISION 6/6] gnu: emacs-nerd-icons: Update description Jaeme Sifat via Guix-patches via
2023-12-23 22:20   ` [bug#67983] [PATCH v2REVISION 0/6] gnu: Nerdify Emacs Jaeme Sifat via Guix-patches via
2023-12-23 21:39 ` [bug#67983] [PATCH v3REVISION 2/6] gnu: Add emacs-nerd-icons-corfu Jaeme Sifat via Guix-patches via
2024-01-20 23:51 ` [bug#67983] Revised patches for nerd fonts packages Jaeme Sifat via Guix-patches via
2024-01-21  8:29   ` Liliana Marie Prikler
2024-01-21 17:25     ` [bug#67983] built-in downloader Jaeme Sifat via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=811e0b5a6364e016b838041c4a4b29d97539659d.1703366019.git.jaeme@runbox.com \
    --to=guix-patches@gnu.org \
    --cc=67983@debbugs.gnu.org \
    --cc=andrew@trop.in \
    --cc=cox.katherine.e+guix@gmail.com \
    --cc=jaeme@runbox.com \
    --cc=liliana.prikler@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).