guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-interleave.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-interleave.
Date: Mon, 25 May 2020 07:40:44 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5856db3  gnu: Add emacs-interleave.
5856db3 is described below

commit 5856db313d7e6973506fc6272fdf3eb4efd1d109
Author: Ryan Desfosses <address@hidden>
AuthorDate: Mon May 25 13:40:20 2020 +0200

    gnu: Add emacs-interleave.
    
    * gnu/packages/emacs-xyz.scm (emacs-interleave): New variable.
    
    Signed-off-by: Nicolas Goaziou <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6e0f768..5dbb48b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -71,6 +71,7 @@
 ;;; Copyright © 2020 Marius Bakke <address@hidden>
 ;;; Copyright © 2020 pinoaffe <address@hidden>
 ;;; Copyright © 2020 Vinicius Monego <address@hidden>
+;;; Copyright © 2020 Ryan Desfosses <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6076,6 +6077,28 @@ the Hydra very seamless; it's like a minor mode that 
disables itself
 automatically.")
     (license license:gpl3+)))
 
+(define-public emacs-interleave
+  (package
+    (name "emacs-interleave")
+    (version "1.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/rudolfochrist/interleave";)
+         (commit (string-append "interleave-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0l5b681mrpk12lx5c16m7kc13p29z6zismwg1llsjg7cdmrmsrcb"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/rudolfochrist/interleave";)
+    (synopsis "Emacs minor mode to interleave notes and text books")
+    (description
+     "Interleave is a minor mode that presents a document viewer side
+by side to an Org buffer with your notes relevant to the current page.")
+    (license license:gpl3+)))
+
 (define-public emacs-ivy
   (package
     (name "emacs-ivy")



reply via email to

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