diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-19 12:45:06 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-19 12:45:45 +0100 |
commit | 71db233a7d2b5a25ece95853616f4c63a8158175 (patch) | |
tree | 442a8b17772899ccfa66ab74d808b19e722c2ed1 | |
parent | efaa3e5b8558fa5fbf1e91745b12e6b7c72e1829 (diff) | |
download | guix-71db233a7d2b5a25ece95853616f4c63a8158175.tar.gz guix-71db233a7d2b5a25ece95853616f4c63a8158175.zip |
gnu: emacs-treemacs-nerd-icons: Update to 0.0.1-1.
* gnu/packages/emacs-xyz.scm (emacs-treemacs-nerd-icons): Update to 0.0.1-1.
Change-Id: Ia719344e117913343ee46977115428482027f6ff
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 664d5b8cc3..5b26f13497 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33040,26 +33040,24 @@ utilities.") mu))))) (define-public emacs-treemacs-nerd-icons - (let ((revision "0") - (commit "9876cb478145a0ec4e36f64ff6583f3de7126216")) - (package - (name "emacs-treemacs-nerd-icons") - (version (git-version "0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/rainstormstudio/treemacs-nerd-icons.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1xphhxdibjhp27z2lj1nxlxf7cfm8vpi44fr01fk9krqy9vaz0q0")))) - (build-system emacs-build-system) - (propagated-inputs (list emacs-nerd-icons emacs-treemacs)) - (synopsis "emacs-treemacs-nerd-icons") - (description "This package provides nerd-icons integration for treemacs.") - (home-page "https://github.com/rainstormstudio/treemacs-nerd-icons") - (license license:gpl3+)))) + (package + (name "emacs-treemacs-nerd-icons") + (version "0.0.1-1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rainstormstudio/treemacs-nerd-icons.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15mfxaimbwv87nxsna83wcslmpzyclx8n09kzwmchy97ri2xl67h")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-nerd-icons emacs-treemacs)) + (synopsis "emacs-treemacs-nerd-icons") + (description "This package provides nerd-icons integration for treemacs.") + (home-page "https://github.com/rainstormstudio/treemacs-nerd-icons") + (license license:gpl3+))) (define-public emacs-libyaml ;; Upstream made no release so far. |