Tom Willemse
dcc432ed42
This configuration is for now specific to data, rincewind will have a different configuration.
32 lines
1.3 KiB
Scheme
32 lines
1.3 KiB
Scheme
(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
|
|
(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
|
|
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+))))
|