guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: Add emacs-org-books.


From: guix-commits
Subject: 04/08: gnu: Add emacs-org-books.
Date: Sun, 6 Feb 2022 17:37:32 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 5fb078eee2a07da72e3431f8b5f1099258a952b1
Author: pinoaffe <pinoaffe@airmail.cc>
AuthorDate: Sun Feb 6 23:26:29 2022 +0100

    gnu: Add emacs-org-books.
    
    * gnu/packages/emacs-xyz.scm (emacs-org-books): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index de2ac45066..d9007e7776 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5082,6 +5082,34 @@ strike through completed TODO headings, changes Org 
blocks, changes Org check
 boxes, and more.")
       (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
   (package
     (name "emacs-org-inline-pdf")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]