summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-02-09 15:59:09 +0000
committerGitHub <noreply@github.com>2018-02-09 15:59:09 +0000
commit465d7c55d993540d9027a2f610482772e4c1d38b (patch)
tree4a0d2422fd15d9509501ccbdad069605d5cad807 /pkgs
parent4ffe462b10f1bd55afe9ea6d92ee44dccaf1f2f5 (diff)
parent6f56749b071741b8f54254c5522e82d37290176e (diff)
downloadnixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar.gz
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar.bz2
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar.lz
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar.xz
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.tar.zst
nixlib-465d7c55d993540d9027a2f610482772e4c1d38b.zip
Merge pull request #34763 from zimbatm/asciidoctor-pdf-fix
asciidoctor: expose all the bins
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/typesetting/asciidoctor/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/tools/typesetting/asciidoctor/default.nix b/pkgs/tools/typesetting/asciidoctor/default.nix
index f494f1911593..02b57ee3a13b 100644
--- a/pkgs/tools/typesetting/asciidoctor/default.nix
+++ b/pkgs/tools/typesetting/asciidoctor/default.nix
@@ -1,12 +1,18 @@
-{ stdenv, lib, bundlerEnv, ruby, curl }:
-
-bundlerEnv {
-  pname = "asciidoctor";
+{ stdenv, lib, bundlerApp, ruby, curl }:
 
+bundlerApp {
   inherit ruby;
-
+  pname = "asciidoctor";
   gemdir = ./.;
 
+  exes = [
+    "asciidoctor"
+    "asciidoctor-bespoke"
+    "asciidoctor-latex"
+    "asciidoctor-pdf"
+    "asciidoctor-safe"
+  ];
+
   meta = with lib; {
     description = "A faster Asciidoc processor written in Ruby";
     homepage = http://asciidoctor.org/;