aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages
diff options
context:
space:
mode:
authorGravatar Tom Willemse2024-01-16 01:00:30 -0800
committerGravatar Tom Willemse2024-01-16 01:00:30 -0800
commitee519e1e083ae8652036a0028bc271866c924058 (patch)
tree6d1f59971e9150c2288e01224e090c4f228ab4d9 /oni/packages
parentf2c93c428742f5efc2013badd8b5a9267d0b7a6a (diff)
downloadnew-dotfiles-ee519e1e083ae8652036a0028bc271866c924058.tar.gz
new-dotfiles-ee519e1e083ae8652036a0028bc271866c924058.zip
Update emacs-outli to latest version
Diffstat (limited to 'oni/packages')
-rw-r--r--oni/packages/emacs-outli.scm36
1 files changed, 17 insertions, 19 deletions
diff --git a/oni/packages/emacs-outli.scm b/oni/packages/emacs-outli.scm
index 67fcd01..b60cf08 100644
--- a/oni/packages/emacs-outli.scm
+++ b/oni/packages/emacs-outli.scm
@@ -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+)))