diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-07-03 18:29:59 +0200 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2025-07-03 12:20:40 -0500 |
| commit | 0a274e416fc9fc0e0837cc1fa1a523d70b2774f2 (patch) | |
| tree | 1297ae27a880d41e11a21c8f7b982e6b6631e672 /gnu | |
| parent | 9c3c27e0d42e4e60b6712df5dbb15c6af5f559b4 (diff) | |
gnu: Add emacs-org-asciidoc.
* gnu/packages/emacs-xyz.scm (emacs-org-asciidoc): New variable.
Change-Id: If5854e0b302405e1d7158283485738478c4710e7
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 06db3fe683a..ade4a21d65f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -31860,6 +31860,32 @@ modes and text viewing modes respectively.") files. It focuses on highlighting the document to improve readability.") (license license:gpl2+))) +(define-public emacs-org-asciidoc + (let ((commit "a8d49c44cc9aa8a3f384155f0ae052dbf36df00c") + (revision "0")) + (package + (name "emacs-org-asciidoc") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yashi/org-asciidoc.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0i77za68sdvp4zxfa3r63vg8pl2jikz0bhvp7znirc71r6wkw3pf")))) + (build-system emacs-build-system) + (arguments + (list #:test-command #~(list "make" "test"))) + (native-inputs + (list (list emacs-org "test"))) + (synopsis "Org mode exporter backend for AsciiDoc") + (description "This package provides an org-mode exporter backend for +AsciiDoc.") + (home-page "https://github.com/yashi/org-asciidoc") + (license license:gpl3+)))) + (define-public emacs-racer (let ((commit "1e63e98626737ea9b662d4a9b1ffd6842b1c648c") (revision "0")) |
