diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-18 16:02:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-18 23:56:08 +0200 |
commit | ae0b283d7d35a909cd1382a875822385d799a0eb (patch) | |
tree | 70dbc0e0193c7891805ad344ad22d39c13b641ca /gnu/packages | |
parent | 671369f204cc47d807e153976926aa735c1fbb04 (diff) | |
download | guix-ae0b283d7d35a909cd1382a875822385d799a0eb.tar guix-ae0b283d7d35a909cd1382a875822385d799a0eb.tar.gz |
gnu: emacs-prism: Update to 0.3.5.
* gnu/packages/emacs-xyz.scm (emacs-prism): Update to 0.3.5.
[propagated-inputs]: Add EMACS-COMPAT.
Change-Id: I4cb227752028fd40b064346d777a40da92a3874b
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 253b8bee77..6770365677 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1340,27 +1340,28 @@ buffer.") (license license:gpl3+)))) (define-public emacs-prism - (package - (name "emacs-prism") - (version "0.3.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alphapapa/prism.el") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0n2gf7302hqdnhsax1y3ahksfmmpd8cmiv1zgb7rjg8qhcs0iqp2")))) - (build-system emacs-build-system) - (propagated-inputs (list emacs-dash)) - (home-page "https://github.com/alphapapa/prism.el") - (synopsis - "Disperses bracket-bounded syntax into a spectrum of color by depth") - (description - "Prism is a Rainbow Blocks-like mode for Emacs. It preserves non-color + (let ((commit "6046a5cf793f65ff86fe0392e0edf29ffcd57567")) ;version bump + (package + (name "emacs-prism") + (version "0.3.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alphapapa/prism.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1p4vqyc4jm0pg4999i0k04pl0sa9nhrczxf4bng4id1r19sxm6dh")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-compat emacs-dash)) + (home-page "https://github.com/alphapapa/prism.el") + (synopsis + "Disperses bracket-bounded syntax into a spectrum of color by depth") + (description + "Prism is a Rainbow Blocks-like mode for Emacs. It preserves non-color face properties and allows configuration of faces and colors.") - (license license:gpl3+))) + (license license:gpl3+)))) (define-public emacs-project (package |