Update emacs-outli to latest version

This commit is contained in:
Tom Willemse 2024-01-16 01:00:30 -08:00
parent f2c93c4287
commit ee519e1e08

View file

@ -8,25 +8,23 @@
#:use-module (gnu packages emacs-xyz)) #:use-module (gnu packages emacs-xyz))
(define-public emacs-outli (define-public emacs-outli
(let ((commit "bfaa2ff7b777dd7c7b383e79ade061fda25fc282") (package
(revision "0")) (name "emacs-outli")
(package (version "0.1.0")
(name "emacs-outli") (source
(version (git-version "0.0.0" revision commit)) (origin
(source (uri (git-reference
(origin (url "https://github.com/jdtsmith/outli")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/jdtsmith/outli") (method git-fetch)
(commit commit))) (file-name (git-file-name name version))
(method git-fetch) (sha256
(file-name (git-file-name name version)) (base32 "1yyh334r26pjgcx51rrxacwiranysnhbdz83xgpjwaby280xwlgb"))))
(sha256 (build-system emacs-build-system)
(base32 "17gnz77x9xgkvg1452dshd10i445ayfjyvrpq6vb240blj5sbrc8")))) (home-page "https://github.com/jdtsmith/outli")
(build-system emacs-build-system) (synopsis "Simple comment-based outlines for Emacs")
(home-page "https://github.com/jdtsmith/outli") (description "outli is a simple Emacs outliner for code, documents, and more which styles your
(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 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 the built-in outline-minor-mode and is simple by design, providing just a few
key features.") key features.")
(license license:gpl3+)))) (license license:gpl3+)))