me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-org-books.

* gnu/packages/emacs-xyz.scm (emacs-org-books): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
pinoaffe 2022-02-06 23:26:29 +01:00 committed by Nicolas Goaziou
parent 6ad918c0de
commit 5fb078eee2
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 28 additions and 0 deletions

View File

@ -5082,6 +5082,34 @@ strike through completed TODO headings, changes Org blocks, changes Org check
boxes, and more.") boxes, and more.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-org-books
(package
(name "emacs-org-books")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lepisma/org-books")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1sgckvpjdaig9r2clcvs6ckgf2kx7amikkpq26y30jbnfnbskf0v"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-dash
emacs-enlive
emacs-helm
emacs-helm-org
emacs-org
emacs-s))
(home-page "https://github.com/lepisma/org-books")
(synopsis "Reading list management with Org mode and Helm")
(description
"Org Books is a tool for managing reading lists in an Org mode file.")
(license license:gpl3+)))
(define-public emacs-org-inline-pdf (define-public emacs-org-inline-pdf
(package (package
(name "emacs-org-inline-pdf") (name "emacs-org-inline-pdf")