Update emacs-outli to latest version
This commit is contained in:
parent
f2c93c4287
commit
ee519e1e08
1 changed files with 17 additions and 19 deletions
|
@ -8,25 +8,23 @@
|
|||
#:use-module (gnu packages emacs-xyz))
|
||||
|
||||
(define-public emacs-outli
|
||||
(let ((commit "bfaa2ff7b777dd7c7b383e79ade061fda25fc282")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-outli")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jdtsmith/outli")
|
||||
(commit commit)))
|
||||
(method git-fetch)
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "17gnz77x9xgkvg1452dshd10i445ayfjyvrpq6vb240blj5sbrc8"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/jdtsmith/outli")
|
||||
(synopsis "Simple comment-based outlines for Emacs")
|
||||
(description "outli is a simple Emacs outliner for code, documents, and more which styles your
|
||||
(package
|
||||
(name "emacs-outli")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jdtsmith/outli")
|
||||
(commit (string-append "v" version))))
|
||||
(method git-fetch)
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1yyh334r26pjgcx51rrxacwiranysnhbdz83xgpjwaby280xwlgb"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/jdtsmith/outli")
|
||||
(synopsis "Simple comment-based outlines for Emacs")
|
||||
(description "outli is a simple Emacs outliner for code, documents, and more which styles your
|
||||
headings, and emulates org-mode navigation and structure editing. It is based on
|
||||
the built-in outline-minor-mode and is simple by design, providing just a few
|
||||
key features.")
|
||||
(license license:gpl3+))))
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue