diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-23 13:51:30 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-23 13:51:30 +0300 |
| commit | 1a2d3d4045786ba6c1c06d280ca8f135397fe09b (patch) | |
| tree | 9e7cef00409a24274bfbf33ae3ad5b6eca2fcb6f | |
| parent | gnu: Add emacs-lice-el (diff) | |
| download | guix-wigust-1a2d3d4045786ba6c1c06d280ca8f135397fe09b.tar.gz | |
wigust: Add emacs-outorg.
* wigust/packages/emacs.scm (emacs-outorg): New public variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 1408efc..8df1876 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -3829,6 +3829,31 @@ You could get a Epkg package list by invoking @code{epkg-list-packages} in Emacs.") (license license:gpl3+))) +(define-public emacs-outorg + (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64")) + (package + (name "emacs-outorg") + (version (git-version "2.0" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alphapapa/outorg") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj")))) + (build-system emacs-build-system) + (home-page "https://github.com/alphapapa/outorg") + (synopsis "Org-style comment editing") + (description "Outorg is for editing comment-sections of source-code +files in temporary Org-mode buffers. It turns conventional +literate-programming upside-down in that the default mode is the +programming-mode, and special action has to be taken to switch to the +text-mode (i.e. Org-mode).") + (license license:gpl3+)))) + (define-public emacs-lice-el (let ((commit "4339929927c62bd636f89bb39ea999d18d269250")) (package |
