mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
add asciidoctor-revealjs
This commit is contained in:
parent
46082cbb94
commit
c93b452c3c
1 changed files with 37 additions and 0 deletions
|
@ -705,6 +705,43 @@
|
|||
)
|
||||
)
|
||||
|
||||
(use-modules (guix packages))
|
||||
(use-modules (guix download))
|
||||
(use-modules (gnu packages ruby))
|
||||
(use-modules (guix build-system ruby))
|
||||
(use-modules (guix licenses))
|
||||
|
||||
|
||||
|
||||
(define-public glicid-ruby-asciidoctor-revealjs
|
||||
(package
|
||||
(name "ruby-asciidoctor-revealjs")
|
||||
(version "4.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "asciidoctor-revealjs" version))
|
||||
(sha256
|
||||
(base32
|
||||
"03vmbcc3x059h17ry4qwk1p0yar9wgh87l2qssi307gy45cjw2mq"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("ruby-asciidoctor" ,ruby-asciidoctor)
|
||||
; ("ruby-concurrent-ruby" ,ruby-concurrent-ruby)
|
||||
("ruby-concurrent" ,ruby-concurrent)
|
||||
("ruby-thread-safe" ,ruby-thread-safe)))
|
||||
(synopsis
|
||||
"Converts AsciiDoc documents into HTML5 presentations designed to be executed by the reveal.js presentation framework.")
|
||||
(description
|
||||
"Converts AsciiDoc documents into HTML5 presentations designed to be executed by the reveal.js presentation framework.")
|
||||
(home-page
|
||||
"https://github.com/asciidoctor/asciidoctor-reveal.js")
|
||||
(license license:expat))
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
;;; glicid.scm ends here
|
||||
|
|
Loading…
Add table
Reference in a new issue