mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-pulsar.
* gnu/packages/emacs-xyz.scm (emacs-pulsar): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9b30bc1da3
commit
d51f764629
1 changed files with 34 additions and 0 deletions
|
@ -18831,6 +18831,40 @@ navigate and display hierarchy structures.")
|
||||||
"This package allows controlling @code{pulseaudio} from Emacs.")
|
"This package allows controlling @code{pulseaudio} from Emacs.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-pulsar
|
||||||
|
(package
|
||||||
|
(name "emacs-pulsar")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.sr.ht/~protesilaos/pulsar")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09s1r9zqc28g75jjxajdm34ni4m7gynh0xsffy5d60c50igiqa94"))))
|
||||||
|
(native-inputs (list texinfo))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'makeinfo
|
||||||
|
(lambda _
|
||||||
|
(invoke "emacs"
|
||||||
|
"--batch"
|
||||||
|
"--eval=(require 'ox-texinfo)"
|
||||||
|
"--eval=(find-file \"README.org\")"
|
||||||
|
"--eval=(org-texinfo-export-to-info)")
|
||||||
|
(install-file "pulsar.info" (string-append #$output "/share/info")))))))
|
||||||
|
(home-page "https://protesilaos.com/emacs/pulsar")
|
||||||
|
(synopsis "Pulse highlight line on demand or after running select functions")
|
||||||
|
(description "This package temporarily highlights the current line after a
|
||||||
|
given function is invoked.")
|
||||||
|
(license (list license:gpl3+
|
||||||
|
license:fdl1.3+)))) ; GFDLv1.3+ for the manual
|
||||||
|
|
||||||
(define-public emacs-datetime
|
(define-public emacs-datetime
|
||||||
(package
|
(package
|
||||||
(name "emacs-datetime")
|
(name "emacs-datetime")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue