From ee519e1e083ae8652036a0028bc271866c924058 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 16 Jan 2024 01:00:30 -0800 Subject: Update emacs-outli to latest version --- oni/packages/emacs-outli.scm | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) (limited to 'oni/packages') 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+))) -- cgit v1.2.3-54-g00ecf