about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-09-05 15:41:43 +0000
committerGitHub <noreply@github.com>2023-09-05 15:41:43 +0000
commitd65a23c7e6cfee89ea8c841dd54f3bf611727f00 (patch)
tree836a83c50689581e12b8b181a6c3a2b6646973f7
parentc82e3cf8ee51b35b8194c6c9316c2a442195b092 (diff)
parente9ce489b46e9ad7b14ef9915e585f6da9b661d0b (diff)
downloadnixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar.gz
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar.bz2
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar.lz
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar.xz
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.tar.zst
nixlib-d65a23c7e6cfee89ea8c841dd54f3bf611727f00.zip
Merge pull request #253332 from EdenEast/asciidoctor-reducer
asciidoctor-with-extensions: init asciidoctor-reducer at 1.0.5
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile1
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock3
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix1
-rw-r--r--pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix11
4 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
index 8326fabad510..12c132a81d1c 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile
@@ -7,6 +7,7 @@ gem 'asciidoctor-html5s'
 gem 'asciidoctor-mathematical'
 gem 'asciidoctor-multipage'
 gem 'asciidoctor-pdf'
+gem 'asciidoctor-reducer'
 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 90081826f702..da7c2fccb1b6 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/Gemfile.lock
@@ -42,6 +42,8 @@ GEM
       prawn-table (~> 0.2.0)
       prawn-templates (~> 0.1.0)
       treetop (~> 1.6.0)
+    asciidoctor-reducer (1.0.5)
+      asciidoctor (~> 2.0)
     asciidoctor-revealjs (5.0.1)
       asciidoctor (>= 2.0.0, < 3.0.0)
     asciimath (2.0.5)
@@ -127,6 +129,7 @@ DEPENDENCIES
   asciidoctor-mathematical
   asciidoctor-multipage
   asciidoctor-pdf
+  asciidoctor-reducer
   asciidoctor-revealjs
   coderay
   pygments.rb
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix b/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix
index 50ee906262ee..ba9c21631a90 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix
@@ -17,6 +17,7 @@ bundlerApp rec {
     "asciidoctor-epub3"
     "asciidoctor-multipage"
     "asciidoctor-pdf"
+    "asciidoctor-reducer"
     "asciidoctor-revealjs"
   ];
 
diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix b/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
index 0a88d0285c45..ac3fb75898fb 100644
--- a/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
+++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/gemset.nix
@@ -137,6 +137,17 @@
     };
     version = "2.3.9";
   };
+  asciidoctor-reducer = {
+    dependencies = ["asciidoctor"];
+    groups = ["default"];
+    platforms = [];
+    source = {
+      remotes = ["https://rubygems.org"];
+      sha256 = "1708fi4bxjpkdszm6a4naa0qcsl0vqnhcklryn2sysl24zaz07h5";
+      type = "gem";
+    };
+    version = "1.0.5";
+  };
   asciidoctor-revealjs = {
     dependencies = ["asciidoctor"];
     groups = ["default"];