guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-orgit.


From: guix-commits
Subject: 01/01: gnu: Add emacs-orgit.
Date: Wed, 20 Feb 2019 06:01:18 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit e77c7210f002c27a6a05c65cbf4a918dbceaf237
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Feb 20 11:08:13 2019 +0100

    gnu: Add emacs-orgit.
    
    * gnu/packages/emacs-xyz.scm (emacs-orgit): New variable.
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 75fc974..3afbcd6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13158,3 +13158,30 @@ opposed to character-based).")
 view of file listings sorted by size.  Directory sizes are computed
 recursively.  The results are cached for speed.")
     (license license:gpl3+)))
+
+(define-public emacs-orgit
+  (let ((commit "ddb830c38cb71e5cf86db7fa62d6ee88ab3962d5"))
+    (package
+      (name "emacs-orgit")
+      (version (git-version "1.5.1" "1" commit))
+      (home-page "https://github.com/magit/orgit";)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url home-page)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0fy4n71yskfkjl6w9mzrw3pfd5lp8f48g2c9bxiwg7mwzsmsb9nb"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-dash" ,emacs-dash)
+         ("emacs-magit" ,emacs-magit)))
+      (synopsis "Support for Org links to Magit buffers")
+      (description "This package defines several Org link types, which can be
+used to link to certain Magit buffers.  Use the command
address@hidden while such a buffer is current to store a link.
+Later you can insert it into an Org buffer using the command
address@hidden")
+      (license license:gpl3+))))



reply via email to

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