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 }: { stdenv, lib, bundlerApp, ruby, curl }:
bundlerEnv {
pname = "asciidoctor";
bundlerApp {
inherit ruby; inherit ruby;
pname = "asciidoctor";
gemdir = ./.; gemdir = ./.;
exes = [
"asciidoctor"
"asciidoctor-bespoke"
"asciidoctor-latex"
"asciidoctor-pdf"
"asciidoctor-safe"
];
meta = with lib; { meta = with lib; {
description = "A faster Asciidoc processor written in Ruby"; description = "A faster Asciidoc processor written in Ruby";
homepage = http://asciidoctor.org/; homepage = http://asciidoctor.org/;