GNU bug report logs -
#67983
[PATCH 0/5] gnu: Nerdify Emacs.
Previous Next
To reply to this bug, email your comments to 67983 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:00:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jaeme Sifat <jaeme <at> runbox.com>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Sat, 23 Dec 2023 05:00:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Noticed that we have a emacs-nerd-icons package, but it isn't acompanied by
any corresponding nerd icons packages. This patchset rectifies that.
Jaeme Sifat (5):
gnu: Add emacs-nerd-icons-dired.
gnu: Add emacs-nerd-icons-corfu.
gnu: Add emacs-nerd-icons-ivy-rich.
gnu: Add emacs-nerd-icons-ibuffer.
gnu: Add emacs-nerd-icons-completion.
gnu/packages/emacs-xyz.scm | 119 +++++++++++++++++++++++++++++++++++++
1 file changed, 119 insertions(+)
base-commit: ab1ff7ca40b0a2d935f715dcf64f0f3128632d3d
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:04:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* 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..21c637217a 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 "Package that 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. 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
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:04:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-corfu): New variable.
Change-Id: I6c72e0a1d44f5cbe5fe4b436b4595685c99757a4
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 21c637217a..fedf262ee7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,32 @@ (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-corfu
+ (let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-corfu")
+ (version (git-version "0.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13m20k242zma6jw7pkbw89fk3dnbkwdajcpiyay5xx2l9241snb7"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (synopsis "Adds Nerd icons to completion candidates")
+ (description
+ "@code{nerd-icons-corfu} is a library for adding icons to completions
+in Corfu. It uses @code{nerd-icons.el} under the hood and, as such, works on
+both GUI and terminal. This requires a nerd font to be installed on your
+system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-dired
(let ((commit "c1c73488630cc1d19ce1677359f614122ae4c1b9")
(revision "0"))
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:05:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-ivy-rich): New variable.
Change-Id: I5e4d8128544608bbafb58b9d04facfba04270c93
---
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 fedf262ee7..1c2f320690 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28493,6 +28493,28 @@ (define-public emacs-nerd-icons-dired
works in the same way. Requires a nerd font to be installed on your system.")
(license license:gpl3+))))
+(define-public emacs-nerd-icons-ivy-rich
+ (package
+ (name "emacs-nerd-icons-ivy-rich")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seagle0128/nerd-icons-ivy-rich/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0psfjjqxrfkk7qaj44d20rrks31cik318vq2im5jff83bw1hgcbn"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-ivy-rich emacs-nerd-icons))
+ (home-page "https://github.com/seagle0128/nerd-icons-ivy-rich")
+ (synopsis "Display nerd icons for all buffers in @code{ivy}")
+ (description
+ "Display nerd icons for all buffers in @code{ivy}. Requires a nerd font
+be installed on your system.")
+ (license license:gpl3+)))
+
(define-public emacs-all-the-icons
(package
(name "emacs-all-the-icons")
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:05:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-ibuffer): New variable.
Change-Id: I7591088092487f0aca3a53933bfdac19e97fcd31
---
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 1c2f320690..99e6b7430c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28493,6 +28493,28 @@ (define-public emacs-nerd-icons-dired
works in the same way. Requires a nerd font to be installed on your system.")
(license license:gpl3+))))
+(define-public emacs-nerd-icons-ibuffer
+ (package
+ (name "emacs-nerd-icons-ibuffer")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seagle0128/nerd-icons-ibuffer/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wj6kcgvh700maj9i5pmgzc48lbj0dbxx849a8w519m4anr7b23s"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/seagle0128/nerd-icons-ibuffer")
+ (synopsis "Display nerd icons in ibuffer")
+ (description
+ "Display nerd icons in ibuffer. Requires a nerd font to be installed on
+your system.")
+ (license license:gpl3+)))
+
(define-public emacs-nerd-icons-ivy-rich
(package
(name "emacs-nerd-icons-ivy-rich")
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 05:05:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-completion): New variable.
Change-Id: I63cc9f31551b59f1e286fad03fbfa78973fffd2c
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 99e6b7430c..6bbc400463 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,30 @@ (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-completion
+ (let ((commit "c2db8557a3c1a9588d111f8c8e91cae96ee85010")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-completion")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10ll0dj6ym5prrkv6smj0ac2ail4b3rqcrh1lyr61y3cj422vn9z"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (synopsis "Use nerd-icons for completion")
+ (description
+ "Use nerd-icons for completion. Requires a nerd font to be installed
+on your system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-corfu
(let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
(revision "0"))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 08:05:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Am Freitag, dem 22.12.2023 um 23:54 -0500 schrieb Jaeme Sifat:
> Noticed that we have a emacs-nerd-icons package, but it isn't
> acompanied by any corresponding nerd icons packages. This patchset
> rectifies that.
On that matter, does the existing package work without downloading
extra fonts? The nerd fonts mix free and non-free ones willy-nilly, so
they'd better be avoided.
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 08:27:01 GMT)
Full text and
rfc822 format available.
Message #26 received at 67983 <at> debbugs.gnu.org (full text, mbox):
> does the existing package work without downloading
> extra fonts?
The package works without the user having to install nonfree fonts. It
only requires the NerdFontsSymbolsOnly archive, which is licensed under
the expat license. There is an install script helper within the
nerd-icons package that installs *only* the symbols and not any nonfree
font, this ensures that the user would not have to go and possibly
download a nonfree nerd font themselves for the package to work.
I hope this clears it up.
Nerd Font Symbols Source (download link)
-
https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/NerdFontsSymbolsOnly.zip
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 11:01:01 GMT)
Full text and
rfc822 format available.
Message #29 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 23.12.2023 um 00:02 -0500 schrieb Jaeme Sifat:
> * gnu/packages/emacs-xyz.scm (emacs-nerd-icons-completion): New
> variable.
>
> Change-Id: I63cc9f31551b59f1e286fad03fbfa78973fffd2c
> ---
> gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 99e6b7430c..6bbc400463 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -28442,6 +28442,30 @@ (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-completion
> + (let ((commit "c2db8557a3c1a9588d111f8c8e91cae96ee85010")
> + (revision "0"))
> + (package
> + (name "emacs-nerd-icons-completion")
> + (version (git-version "0.0.1" revision commit))
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url
> "https://github.com/rainstormstudio/nerd-icons-completion/")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> "10ll0dj6ym5prrkv6smj0ac2ail4b3rqcrh1lyr61y3cj422vn9z"))))
> + (build-system emacs-build-system)
> + (propagated-inputs (list emacs-nerd-icons))
> + (home-page
> "https://github.com/rainstormstudio/nerd-icons-completion/")
> + (synopsis "Use nerd-icons for completion")
> + (description
> + "Use nerd-icons for completion. Requires a nerd font to be
> installed
> +on your system.")
The descriptions should consist of full sentences.
Cheers
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 19:41:02 GMT)
Full text and
rfc822 format available.
Message #32 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-completion): New variable.
Change-Id: I63cc9f31551b59f1e286fad03fbfa78973fffd2c
---
gnu/packages/emacs-xyz.scm | 35 ++++++++++++++++++++++++++++++-----
1 file changed, 30 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 99e6b7430c..2cd2b22c71 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,30 @@ (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-completion
+ (let ((commit "c2db8557a3c1a9588d111f8c8e91cae96ee85010")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-completion")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10ll0dj6ym5prrkv6smj0ac2ail4b3rqcrh1lyr61y3cj422vn9z"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (synopsis "Use nerd-icons for completion")
+ (description
+ "This package provides the use of nerd-icons for completion. This
+requires a nerd font to be installed on your system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-corfu
(let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
(revision "0"))
@@ -28490,7 +28514,8 @@ (define-public emacs-nerd-icons-dired
@code{dired-mode}")
(description
"@code{nerd-icons-dired} is inspired by @code{all-the-icons-dired} and
-works in the same way. Requires a nerd font to be installed on your system.")
+works in the same way. This requires a nerd font to be installed on your
+system.")
(license license:gpl3+))))
(define-public emacs-nerd-icons-ibuffer
@@ -28511,8 +28536,8 @@ (define-public emacs-nerd-icons-ibuffer
(home-page "https://github.com/seagle0128/nerd-icons-ibuffer")
(synopsis "Display nerd icons in ibuffer")
(description
- "Display nerd icons in ibuffer. Requires a nerd font to be installed on
-your system.")
+ "This package provides displaying nerd icons in ibuffer. This requires a
+nerd font to be installed on your system.")
(license license:gpl3+)))
(define-public emacs-nerd-icons-ivy-rich
@@ -28533,8 +28558,8 @@ (define-public emacs-nerd-icons-ivy-rich
(home-page "https://github.com/seagle0128/nerd-icons-ivy-rich")
(synopsis "Display nerd icons for all buffers in @code{ivy}")
(description
- "Display nerd icons for all buffers in @code{ivy}. Requires a nerd font
-be installed on your system.")
+ "This package provides displaying nerd icons for all buffers in
+@code{ivy}. This requires a nerd font be installed on your system.")
(license license:gpl3+)))
(define-public emacs-all-the-icons
base-commit: ab1ff7ca40b0a2d935f715dcf64f0f3128632d3d
prerequisite-patch-id: fb101a604c75f37ad97e84ee5a14569f267813a0
prerequisite-patch-id: 371f818d680e9ab30369d76cb4ea05edc1d7352c
prerequisite-patch-id: 6496e4d82468a8a14f155fca1abd689f6c6fd5b8
prerequisite-patch-id: e85aa0771ec7b4647fb905ff0a10b0a4ffad22c9
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 19:56:01 GMT)
Full text and
rfc822 format available.
Message #35 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 23.12.2023 um 14:38 -0500 schrieb Jaeme Sifat:
> * gnu/packages/emacs-xyz.scm (emacs-nerd-icons-completion): New
> variable.
>
> Change-Id: I63cc9f31551b59f1e286fad03fbfa78973fffd2c
Sorry, but you need to amend each patch on its own :(
For REVISION put a number, like 2 or 3, next time :)
Cheers
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:26:02 GMT)
Full text and
rfc822 format available.
Message #38 received at 67983 <at> debbugs.gnu.org (full text, mbox):
This revised patchset rectifies the issues with the descriptions of the
previous patches. It also adds an extra patch for revising the description of
emacs-nerd-icons to mention being able to download a libre nerd font from
within the package itself.
Jaeme Sifat (6):
gnu: Add emacs-nerd-icons-dired.
gnu: Add emacs-nerd-icons-corfu.
gnu: Add emacs-nerd-icons-ivy-rich.
gnu: Add emacs-nerd-icons-ibuffer.
gnu: Add emacs-nerd-icons-completion.
gnu: emacs-nerd-icons: Update description.
gnu/packages/emacs-xyz.scm | 126 ++++++++++++++++++++++++++++++++++++-
1 file changed, 124 insertions(+), 2 deletions(-)
base-commit: a8196632647b343f8e03c8f12fbdc0cc84ff90f6
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:27:01 GMT)
Full text and
rfc822 format available.
Message #41 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:28:02 GMT)
Full text and
rfc822 format available.
Message #44 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-corfu): New variable.
Change-Id: I6c72e0a1d44f5cbe5fe4b436b4595685c99757a4
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 81a935cb7a..a03219b886 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,32 @@ (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-corfu
+ (let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-corfu")
+ (version (git-version "0.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13m20k242zma6jw7pkbw89fk3dnbkwdajcpiyay5xx2l9241snb7"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (synopsis "Adds nerd icons to completion candidates")
+ (description
+ "@code{nerd-icons-corfu} is a library for adding icons to completions
+in Corfu. It uses @code{nerd-icons.el} under the hood and, as such, works on
+both GUI and terminal. This requires a nerd font to be installed on your
+system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-dired
(let ((commit "c1c73488630cc1d19ce1677359f614122ae4c1b9")
(revision "0"))
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:28:02 GMT)
Full text and
rfc822 format available.
Message #47 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-ivy-rich): New variable.
Change-Id: I5e4d8128544608bbafb58b9d04facfba04270c93
---
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 a03219b886..6bf609a482 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28493,6 +28493,28 @@ (define-public emacs-nerd-icons-dired
requires a nerd font to be installed on your system.")
(license license:gpl3+))))
+(define-public emacs-nerd-icons-ivy-rich
+ (package
+ (name "emacs-nerd-icons-ivy-rich")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seagle0128/nerd-icons-ivy-rich/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0psfjjqxrfkk7qaj44d20rrks31cik318vq2im5jff83bw1hgcbn"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-ivy-rich emacs-nerd-icons))
+ (home-page "https://github.com/seagle0128/nerd-icons-ivy-rich")
+ (synopsis "Display nerd icons for all buffers in @code{ivy}")
+ (description
+ "This package provides displaying nerd icons for all buffers in
+@code{ivy}. This requires a nerd font be installed on your system.")
+ (license license:gpl3+)))
+
(define-public emacs-all-the-icons
(package
(name "emacs-all-the-icons")
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:29:02 GMT)
Full text and
rfc822 format available.
Message #50 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-ibuffer): New variable.
Change-Id: I7591088092487f0aca3a53933bfdac19e97fcd31
---
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 6bf609a482..9cdaea2ad4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28493,6 +28493,28 @@ (define-public emacs-nerd-icons-dired
requires a nerd font to be installed on your system.")
(license license:gpl3+))))
+(define-public emacs-nerd-icons-ibuffer
+ (package
+ (name "emacs-nerd-icons-ibuffer")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seagle0128/nerd-icons-ibuffer/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wj6kcgvh700maj9i5pmgzc48lbj0dbxx849a8w519m4anr7b23s"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/seagle0128/nerd-icons-ibuffer")
+ (synopsis "Display nerd icons in @code{ibuffer}")
+ (description
+ "This package provides displaying nerd icons in @code{ibuffer}. This
+requires a nerd font to be installed on your system.")
+ (license license:gpl3+)))
+
(define-public emacs-nerd-icons-ivy-rich
(package
(name "emacs-nerd-icons-ivy-rich")
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:30:01 GMT)
Full text and
rfc822 format available.
Message #53 received at 67983 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-completion): New variable.
Change-Id: I63cc9f31551b59f1e286fad03fbfa78973fffd2c
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9cdaea2ad4..936d558ae3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,30 @@ (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-completion
+ (let ((commit "c2db8557a3c1a9588d111f8c8e91cae96ee85010")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-completion")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10ll0dj6ym5prrkv6smj0ac2ail4b3rqcrh1lyr61y3cj422vn9z"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/rainstormstudio/nerd-icons-completion/")
+ (synopsis "Use nerd icons for completion")
+ (description
+ "This package provides using nerd icons for completion. This requires
+a nerd font to be installed on your system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-corfu
(let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
(revision "0"))
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:31:02 GMT)
Full text and
rfc822 format available.
Message #56 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Updates the description field to mention the ability to download a libre nerd
font within the package itself and to fix grammatical errors.
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons): Update description field.
Change-Id: I927dfda8cbd7f9a2eca767260f64da1be9b1544d
---
gnu/packages/emacs-xyz.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 936d558ae3..b0f222b735 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28438,8 +28438,11 @@ (define-public emacs-nerd-icons
(arguments
(list #:include #~(cons "^data\\/" %default-include)))
(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.")
+ (description
+ "@code{nerd-icons.el} is an alternative to @code{all-the-icons.el} that
+works on both graphical and text-based Emacs sessions. This requires a nerd
+font installed on your system which can be done by using the built-in nerd
+font symbols downloader script after installation.")
(license license:gpl3+)))
(define-public emacs-nerd-icons-completion
--
2.41.0
Information forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 21:44:01 GMT)
Full text and
rfc822 format available.
Message #59 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Removed mention to emacs-nerd-icons in the description field.
* gnu/packages/emacs-xyz.scm (emacs-nerd-icons-corfu): New variable.
Change-Id: I6c72e0a1d44f5cbe5fe4b436b4595685c99757a4
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 81a935cb7a..b593c4e440 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28442,6 +28442,30 @@ (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-corfu
+ (let ((commit "7077bb76fefc15aed967476406a19dc5c2500b3c")
+ (revision "0"))
+ (package
+ (name "emacs-nerd-icons-corfu")
+ (version (git-version "0.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13m20k242zma6jw7pkbw89fk3dnbkwdajcpiyay5xx2l9241snb7"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nerd-icons))
+ (home-page "https://github.com/LuigiPiucco/nerd-icons-corfu")
+ (synopsis "Adds nerd icons to completion candidates")
+ (description
+ "@code{nerd-icons-corfu} is a library for adding icons to completions
+in Corfu. This requires a nerd font to be installed on your system.")
+ (license license:gpl3+))))
+
(define-public emacs-nerd-icons-dired
(let ((commit "c1c73488630cc1d19ce1677359f614122ae4c1b9")
(revision "0"))
base-commit: a8196632647b343f8e03c8f12fbdc0cc84ff90f6
prerequisite-patch-id: e071d9d1b36581d7b906fb55e831167d732c8b1d
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 23 Dec 2023 22:21:02 GMT)
Full text and
rfc822 format available.
Message #62 received at 67983 <at> debbugs.gnu.org (full text, mbox):
I hope this new patch-set fixes the previous issues. I tried to make all
the descriptions consistent with each other and also tried to make it
clear in the original nerd-icons package that it does not require
non-free fonts to use. I personally use nerd icons a lot in Emacs so
thank you for taking the time to review my patches.
Thanks again,
Jaeme
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sat, 20 Jan 2024 23:52:02 GMT)
Full text and
rfc822 format available.
Message #65 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Hi, This is just a friendly bump for my patchset to add nerd font
packages to Emacs. There has been no activity on this thread for almost
a month regarding the new patches.
--
Jaeme
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sun, 21 Jan 2024 08:30:01 GMT)
Full text and
rfc822 format available.
Message #68 received at 67983 <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 20.01.2024 um 18:51 -0500 schrieb Jaeme Sifat:
> Hi, This is just a friendly bump for my patchset to add nerd font
> packages to Emacs. There has been no activity on this thread for
> almost a month regarding the new patches.
I don't see how "a built-in downloader" fixes the issues I've pointed
out. Rather, unless this downloader only picks free fonts, it might
well violate the FSDG. I think we'd do well in substitute*-ing the
nerd fonts where needed.
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67983
; Package
guix-patches
.
(Sun, 21 Jan 2024 17:27:01 GMT)
Full text and
rfc822 format available.
Message #71 received at 67983 <at> debbugs.gnu.org (full text, mbox):
On 1/21/24 03:29, Liliana Marie Prikler wrote:
> Am Samstag, dem 20.01.2024 um 18:51 -0500 schrieb Jaeme Sifat:
>> Hi, This is just a friendly bump for my patchset to add nerd font
>> packages to Emacs. There has been no activity on this thread for
>> almost a month regarding the new patches.
> I don't see how "a built-in downloader" fixes the issues I've pointed
> out. Rather, unless this downloader only picks free fonts, it might
> well violate the FSDG. I think we'd do well in substitute*-ing the
> nerd fonts where needed.
>
> Cheers
On closer inspection, The built-in downloader for `nerd-icons.el' is
this procedure.
--8<---------------cut here---------------start------------->8---
;;;###autoload
(defun nerd-icons-install-fonts (&optional pfx)
"Helper function to download and install the latests fonts based on OS.
The provided Nerd Font is Symbols Nerd Font Mono.
When PFX is non-nil, ignore the prompt and just install"
(interactive "P")
(when (or pfx (yes-or-no-p "This will download and install fonts, are you sure you want to do this?"))
(let* ((url-format "https://raw.githubusercontent.com/rainstormstudio/nerd-icons.el/main/fonts/%s")
(font-dest (cond
;; Default Linux install directories
((member system-type '(gnu gnu/linux gnu/kfreebsd))
(concat (or (getenv "XDG_DATA_HOME")
(concat (getenv "HOME") "/.local/share"))
"/fonts/"
nerd-icons-fonts-subdirectory))
;; Default MacOS install directory
((eq system-type 'darwin)
(concat (getenv "HOME")
"/Library/Fonts/"
nerd-icons-fonts-subdirectory))))
(known-dest? (stringp font-dest))
(font-dest (or font-dest (read-directory-name "Font installation directory: " "~/"))))
(unless (file-directory-p font-dest) (mkdir font-dest t))
(mapc (lambda (font)
(url-copy-file (format url-format font) (expand-file-name font font-dest) t))
nerd-icons-font-names)
(when known-dest?
(message "Fonts downloaded, updating font cache... <fc-cache -f -v> ")
(shell-command-to-string (format "fc-cache -f -v")))
(message "%s Successfully %s `nerd-icons' fonts to `%s'!"
(nerd-icons-wicon "nf-weather-stars" :v-adjust 0.0)
(if known-dest? "installed" "downloaded")
font-dest))))
--8<---------------cut here---------------end--------------->8---
The provided font is Symbols Nerd Font Mono, which is distributed under the expat license.
However, I agree that this built in downloader has the chance of violating the FSDG sometime in the future
since it points to the main branch of the repo. It [the nerd icons repository] also redistributes the nerd icons font
without the respective license notice.
> I think we'd do well in substitute*-ing the
> nerd fonts where needed.
I agree, the much better solution would be to create a patch that removes this crude built-in downloader and instead uses Guix for
the nerd icons. So I'm going to send patches that 1. removes the built-in font downloader for `emacs-nerd-icons' and 2.
Adds the nerd icons font to Emacs (licensed under expat) and 3. Adds that icon font as a propagated input to `emacs-nerd-icons'
As a note I'm surprised that `emacs-nerd-icons' managed to be merged into master as it seems to be the main culprit.
Maybe we should remove it for the sake of consistency until this fix is made? I'm willing to send a revised patchset
that contains all the emacs nerd font packages + compliance patches with the FSDG.
I'm going to see what I can do, thank you for your patience.
---
Jaeme
This bug report was last modified 1 year and 148 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.