asciidoctor: expose all the bins

asciidoctor has multiple binaries, expose them all to the user
This commit is contained in:
zimbatm 2018-02-09 10:48:11 +00:00
parent 04051ee9d0
commit 6f56749b07

View file

@ -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/;