Skip to content
Snippets Groups Projects
Unverified Commit 5856db31 authored by Ryan Desfosses's avatar Ryan Desfosses Committed by Nicolas Goaziou
Browse files

gnu: Add emacs-interleave.


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

Signed-off-by: default avatarNicolas Goaziou <mail@nicolasgoaziou.fr>
parent 0b967058
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,7 @@ ...@@ -71,6 +71,7 @@
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 pinoaffe <pinoaffe@airmail.cc> ;;; Copyright © 2020 pinoaffe <pinoaffe@airmail.cc>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -6076,6 +6077,28 @@ (define-public emacs-hydra ...@@ -6076,6 +6077,28 @@ (define-public emacs-hydra
automatically.") automatically.")
(license license:gpl3+))) (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 (define-public emacs-ivy
(package (package
(name "emacs-ivy") (name "emacs-ivy")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment