diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-04-13 01:11:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-14 17:42:11 +0200 |
commit | 87b6896ed746e90514922087ef7fdc6398a4df0d (patch) | |
tree | 3b95cccb06b8b22fd888183e24e7545eaf940336 | |
parent | 226ab1bc01ad20db38879473d323d725ba36e83b (diff) | |
download | gnu-guix-87b6896ed746e90514922087ef7fdc6398a4df0d.tar gnu-guix-87b6896ed746e90514922087ef7fdc6398a4df0d.tar.gz |
gnu: Add emacs-origami-el.
* gnu/packages/emacs-xyz.scm (emacs-origami-el): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ae118a459b..f1c0b9c27e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -14858,6 +14858,33 @@ definition-jumping and type-checking on demand.") support JSX syntax.") (license license:expat)))) +(define-public emacs-origami-el + (let ((commit "1f38085c8f9af7842765ed63f7d6dfe4dab59366") + (version "1.0") + (revision "1")) + (package + (name "emacs-origami-el") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gregsexton/origami.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s))) + (home-page "https://github.com/gregsexton/origami.el") + (synopsis "Flexible text-folding") + (description "This package provides a minor mode for collapsing and +expanding regions of text without modifying the actual contents.") + (license license:expat)))) + (define-public emacs-semantic-refactor ;; The last release, 0.5, was made on 2015-07-26 and there have been 47 ;; commits since then. |