mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-denote-explore: Update to 4.0.
* gnu/packages/emacs-xyz.scm (emacs-denote-explore): Update to 4.0. [arguments]: Disable tests. [phases]: Add build-info-manual phase. [native-inputs]: Add texinfo. Change-Id: Ib67e5f3f251d492ecf5a303d710c598a5133ec84
This commit is contained in:
parent
b5439d9c84
commit
780bdde3a2
1 changed files with 15 additions and 2 deletions
|
@ -20457,7 +20457,7 @@ complement those of another.")
|
||||||
(define-public emacs-denote-explore
|
(define-public emacs-denote-explore
|
||||||
(package
|
(package
|
||||||
(name "emacs-denote-explore")
|
(name "emacs-denote-explore")
|
||||||
(version "3.3")
|
(version "4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -20466,9 +20466,22 @@ complement those of another.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0773691jxyv039y407c8dppkky41b3icacavddcv9m8v481763b7"))))
|
(base32 "04lc5fw11wixbjdkzbl63g03rdybv6q4mh1dc6c9y322g8qq3r0k"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs (list emacs-denote emacs-dash))
|
(propagated-inputs (list emacs-denote emacs-dash))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;no tests
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'build-info-manual
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(invoke "emacs"
|
||||||
|
"--batch"
|
||||||
|
"--eval=(require 'ox-texinfo)"
|
||||||
|
"--eval=(find-file \"denote-explore.org\")"
|
||||||
|
"--eval=(org-texinfo-export-to-info)"))))))
|
||||||
|
(native-inputs (list texinfo))
|
||||||
(home-page "https://github.com/pprevos/denote-explore")
|
(home-page "https://github.com/pprevos/denote-explore")
|
||||||
(synopsis "Analyse and visualise a collection of Denote notes")
|
(synopsis "Analyse and visualise a collection of Denote notes")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue