guix-commits
[Top][All Lists]
Advanced

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

05/88: gnu: Add emacs-parsebib.


From: Oleg Pykhalov
Subject: 05/88: gnu: Add emacs-parsebib.
Date: Wed, 2 May 2018 13:21:04 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit de8d99128995e694027f73f99beee6851324c623
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:53:15 2018 +0300

    gnu: Add emacs-parsebib.
    
    * gnu/packages/emacs.scm (emacs-parsebib): New public variable.
---
 gnu/packages/emacs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1622679..9a48bfd 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8162,3 +8162,23 @@ of @code{outline-minor-mode} (@code{org-mode} itself 
derives from
 outline-mode), so there is no such thing like an outshine mode, only
 @code{outline-minor-mode} with outshine extensions loaded.")
       (license license:gpl3+))))
+
+(define-public emacs-parsebib
+  (package
+    (name "emacs-parsebib")
+    (version "2.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/joostkremers/parsebib/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/joostkremers/parsebib";)
+    (synopsis "Library for parsing bib files")
+    (description
+     "This package provides an Emacs library for parsing bib files.")
+    (license license:gpl3+)))



reply via email to

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