diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 18:56:19 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 20:17:08 +0300 |
commit | 20b5b16ee975b9009e9029818b566d492b6ed766 (patch) | |
tree | 1273586f3ae2fb888dfe589444b5ce68a86b6c3c /gnu/packages/emacs.scm | |
parent | d7403c126c5682bb61c7c014c7380ed138722d2e (diff) | |
download | guix-20b5b16ee975b9009e9029818b566d492b6ed766.tar guix-20b5b16ee975b9009e9029818b566d492b6ed766.tar.gz |
gnu: Add emacs-hierarchy.
* gnu/packages/emacs.scm (emacs-hierarchy): New public variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index c3badab852..d8f5ce17dd 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -8405,3 +8405,24 @@ made of parentheses, brackets, and braces according to their depth. Each successive level is highlighted in a different color. This makes it easy to orient yourself in the code, and tell which statements are at a given level.") (license license:gpl3+)))) + +(define-public emacs-hierarchy + (package + (name "emacs-hierarchy") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/DamienCassou/hierarchy/archive/" + "v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8")))) + (build-system emacs-build-system) + (home-page "https://github.com/DamienCassou/hierarchy") + (synopsis "Library to create and display hierarchy structures") + (description "This package provides an Emacs library to create, query, +navigate and display hierarchy structures.") + (license license:gpl3+))) |