diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-21 15:09:43 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-21 15:09:43 +0300 |
| commit | a1b9720a5fe1bb33d7f05858509fdb69e9a53058 (patch) | |
| tree | 1e1bb5d2ae94dd4aa072d9f8916e0f487b01b0e5 | |
| parent | wigust: emacs-discover-my-major: Polish. (diff) | |
| download | guix-wigust-master-before-revert.tar.gz | |
wigust: Add emacs-origami.origin/master-before-revertmaster-before-revert
* wigust/packages/emacs.scm (emacs-origami): New public variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index b29739f..2dbb686 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -3266,6 +3266,32 @@ coloring provided by Drew Adams @code{info+} package. To enable this (patches (search-patches "emacs-use-package-add-which-to-bind-key.patch")))))) +(define-public emacs-origami + (let ((commit "1f38085c8f9af7842765ed63f7d6dfe4dab59366") + (revision "1")) + (package + (name "emacs-origami") + (version (string-append "0.1" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gregsexton/origami.el.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-s" ,emacs-s) + ("emacs-dash" ,emacs-dash))) + (home-page "https://github.com/gregsexton/origami.el.git") + (synopsis "A folding minor mode for Emacs") + (description + "This package provides a text folding minor mode for Emacs.") + (license license:expat)))) + (define-public emacs-auto-yasnippet (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b")) (package |
