mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add emacs-org-margin.
* gnu/packages/emacs-xyz.scm (emacs-org-margin): New variable. Change-Id: I48dfd476c5d557d12f63efe52ccf5c08476f79ab
This commit is contained in:
parent
b72fdac200
commit
0beb0dbfe0
1 changed files with 39 additions and 0 deletions
|
@ -39195,6 +39195,45 @@ (define-public emacs-org-modern
|
|||
source blocks.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-org-margin
|
||||
(let* ((commit "4013b59ff829903a7ab86b95593be71aa5c9b87d")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-org-margin")
|
||||
(version (git-version "0.2.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rougier/org-margin")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"13x5568yfqm1lfmy29vcii2bdkjxjygmhslbr0fwgm2xq9rn63yv"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'makeinfo
|
||||
(lambda _
|
||||
(invoke "emacs"
|
||||
"--batch"
|
||||
"--eval=(require 'ox-texinfo)"
|
||||
"--eval=(find-file \"README.org\")"
|
||||
"--eval=(org-texinfo-export-to-info)")
|
||||
(rename-file "README.info" "org-margin.info")
|
||||
(install-file "org-margin.info"
|
||||
(string-append #$output "/share/info")))))))
|
||||
(native-inputs (list texinfo))
|
||||
(license license:gpl3+)
|
||||
(home-page "https://github.com/rougier/org-margin")
|
||||
(synopsis "Outdent headlines in emacs org-mode")
|
||||
(description "@code{org-margin} mode allows to outdent org headlines by
|
||||
moving leading stars into the margin and transform them into markers depending
|
||||
on the chosen style."))))
|
||||
|
||||
(define-public emacs-pyimport
|
||||
(let ((commit "a6f63cf7ed93f0c0f7c207e6595813966f8852b9")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Reference in a new issue