gnu: Add emacs-org-mind-map.

* gnu/packages/emacs.scm (emacs-org-mind-map): New public variable.
master
Oleg Pykhalov 2018-05-02 18:57:54 +03:00
parent 5746ca13dc
commit a3a876c2a7
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 26 additions and 0 deletions

View File

@ -8523,3 +8523,29 @@ navigate and display hierarchy structures.")
(description "Parsing, formatting, matching and recoding
timestamps and date-time format strings library for Emacs.")
(license license:gpl3+)))
(define-public emacs-org-mind-map
(let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
(revision "1"))
(package
(name "emacs-org-mind-map")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/theodorewiles/org-mind-map.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)))
(build-system emacs-build-system)
(home-page "https://github.com/theodorewiles/org-mind-map")
(synopsis "Create Graphviz directed graphs from Org files")
(description
"This package creates Graphviz directed graphs from Org files.")
(license license:gpl3+))))