diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-07-22 12:19:47 +0200 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-07-24 08:27:33 -0700 |
commit | 501c87a9ab7d692cad638b13689c71fe30866c21 (patch) | |
tree | 5ddd8c85531e9996783d2ca3bd68f399905b59a1 | |
parent | 036f2e66c33d9dc3cae37f106d18bfe63c1c1ddb (diff) |
gnu: emacs-denote: Fix info manual build error.
* gnu/packages/emacs-xyz.scm (emacs-denote): Fix info manual build error.
[source]: Fix indentation.
[arguments]<:#phases>: Fix build-info-manual phase.
[description]: Fix indentation.
Change-Id: I5d17d988daa5b4c2111e7acba4b234ca1ad8ef2d
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 1e8ab6be05..26275f9d46 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20298,8 +20298,8 @@ you to deal with multiple log levels.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/protesilaos/denote") - (commit version))) + (url "https://github.com/protesilaos/denote") + (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1np3hyqcw6p5ajx102ng5nyc5gp1is88vk6803gf5alfbw0fzvj4")))) @@ -20309,20 +20309,18 @@ you to deal with multiple log levels.") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'build-info-manual (lambda _ - (import (guix build utils)) - (invoke (string-append #$emacs "/bin/emacs") - "README.org" + (invoke "emacs" "--batch" - "-f" - "org-texinfo-export-to-info" - "--kill") #t))))) + "--eval=(require 'ox-texinfo)" + "--eval=(find-file \"README.org\")" + "--eval=(org-texinfo-export-to-info)")))))) (native-inputs (list texinfo)) (home-page "https://protesilaos.com/emacs/denote/") (synopsis "Simple notes for Emacs") (description -"Denote is a simple note-taking tool for Emacs. It is based on the idea that -notes should follow a predictable and descriptive file-naming scheme. The -file name must offer a clear indication of what the note is about, without + "Denote is a simple note-taking tool for Emacs. It is based on the idea +that notes should follow a predictable and descriptive file-naming scheme. +The file name must offer a clear indication of what the note is about, without reference to any other metadata. Denote basically streamlines the creation of such files while providing facilities to link between them.") (license license:gpl3+))) |