diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-01 00:56:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-01 00:56:29 +0200 |
commit | 58346c4206a0b63f2baf2d6d2a83d08893ea63e3 (patch) | |
tree | 837cb95d3729d2bb0293bae27dcb9779544c63e6 | |
parent | 4d6350c212e6788c9eff477d6d02f81c311e50ff (diff) | |
download | guix-58346c4206a0b63f2baf2d6d2a83d08893ea63e3.tar.gz |
gnu: emacs-logos: Update to 1.1.1.
* gnu/packages/emacs-xyz.scm (emacs-logos): Update to 1.1.1.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 27fc79ca60..b51fef0939 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16256,40 +16256,41 @@ view your Denote directory.") (license license:gpl3+))) (define-public emacs-logos - (package - (name "emacs-logos") - (version "1.1.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.sr.ht/~protesilaos/logos") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "08y63v7qsxw4g0gv01dq05j96ngajln6sv50nssjfwag8bgl4ydi")))) - (native-inputs (list texinfo)) - (build-system emacs-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (add-after 'install 'makeinfo - (lambda* (#:key outputs #:allow-other-keys) - (invoke "emacs" - "--batch" - "--eval=(require 'ox-texinfo)" - "--eval=(find-file \"README.org\")" - "--eval=(org-texinfo-export-to-info)") - (install-file "logos.info" (string-append #$output "/share/info"))))))) - (home-page "https://protesilaos.com/emacs/logos") - (synopsis "Simple focus mode for Emacs") - (description "This package provides a simple focus mode which can be + (let ((commit "eeedd3ef289faa4fa2b726013255747a41a6ba9c")) ;version bump + (package + (name "emacs-logos") + (version "1.1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~protesilaos/logos") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1p4akwpbc6x2k47g99wg4yvdz1wlnb2fqwgk06bfi3s4sv6lngbk")))) + (native-inputs (list texinfo)) + (build-system emacs-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'makeinfo + (lambda* (#:key outputs #:allow-other-keys) + (invoke "emacs" + "--batch" + "--eval=(require 'ox-texinfo)" + "--eval=(find-file \"README.org\")" + "--eval=(org-texinfo-export-to-info)") + (install-file "logos.info" (string-append #$output "/share/info"))))))) + (home-page "https://protesilaos.com/emacs/logos") + (synopsis "Simple focus mode for Emacs") + (description "This package provides a simple focus mode which can be applied to any buffer for reading, writing, or even doing a presentation. The buffer can be divided in pages using the @code{page-delimiter}, outline structure, or any other pattern.") - (license (list license:gpl3+ - license:fdl1.3+)))) ; GFDLv1.3+ for the manual + (license (list license:gpl3+ + license:fdl1.3+))))) ; GFDLv1.3+ for the manual (define-public emacs-tmr (package |