about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorDmytro Kostiuchenko <edio@archlinux.us>2022-01-16 23:52:30 +0200
committerDmytro Kostiuchenko <edio@archlinux.us>2022-01-16 23:52:30 +0200
commitd5cc6c22ad1a905bae720f6d984c01bac23d5556 (patch)
treea92bdf36446ba229ad755780ea787f2750b9e161 /pkgs/tools/typesetting
parent0fd0bb474a67a86dc68a6557d3fb7f54fca8a16f (diff)
asciidoctor-with-extensions: enable html5s backend (#104831)
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile5
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock4
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix11
3 files changed, 18 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
index feb1437d6d400..3675775e1688d 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
@@ -1,10 +1,11 @@
 source 'https://rubygems.org'
 gem 'asciidoctor'
+gem 'asciidoctor-bibtex'
 gem 'asciidoctor-diagram'
-gem 'asciidoctor-pdf'
 gem 'asciidoctor-epub3'
+gem 'asciidoctor-html5s'
 gem 'asciidoctor-mathematical'
-gem 'asciidoctor-bibtex'
+gem 'asciidoctor-pdf'
 gem 'asciidoctor-revealjs'
 gem 'coderay'
 gem 'pygments.rb'
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock
index 14829ed7b0a64..eba0e0d1f9fed 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock
@@ -23,6 +23,9 @@ GEM
       asciidoctor (>= 1.5.6, < 3.0.0)
       gepub (~> 1.0.0)
       mime-types (~> 3.0)
+    asciidoctor-html5s (0.5.1)
+      asciidoctor (>= 1.5.7, < 3.0)
+      thread_safe (~> 0.3.4)
     asciidoctor-mathematical (0.3.5)
       asciidoctor (~> 2.0)
       asciimath (~> 2.0)
@@ -120,6 +123,7 @@ DEPENDENCIES
   asciidoctor-bibtex
   asciidoctor-diagram
   asciidoctor-epub3
+  asciidoctor-html5s
   asciidoctor-mathematical
   asciidoctor-pdf
   asciidoctor-revealjs
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix b/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
index 6bd49e0996235..72421655f695f 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
@@ -93,6 +93,17 @@
     };
     version = "1.5.1";
   };
+  asciidoctor-html5s = {
+    dependencies = ["asciidoctor" "thread_safe"];
+    groups = ["default"];
+    platforms = [];
+    source = {
+      remotes = ["https://rubygems.org"];
+      sha256 = "1zfbfcqyrsk8bnd526ang3b4j3m5pbns7x3fdxarrm8vv1qplss1";
+      type = "gem";
+    };
+    version = "0.5.1";
+  };
   asciidoctor-mathematical = {
     dependencies = ["asciidoctor" "asciimath" "mathematical"];
     groups = ["default"];