2023-03-06 19:19:33 +01:00
|
|
|
(define-module (oni packages emacs-outli)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (guix build-system emacs)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (gnu packages emacs-xyz))
|
|
|
|
|
|
|
|
(define-public emacs-outli
|
2024-01-16 10:00:30 +01:00
|
|
|
(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
|
2023-03-06 19:19:33 +01:00
|
|
|
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.")
|
2024-01-16 10:00:30 +01:00
|
|
|
(license license:gpl3+)))
|