Merge pull request #34763 from zimbatm/asciidoctor-pdf-fix

asciidoctor: expose all the bins
This commit is contained in:
Jörg Thalheim 2018-02-09 15:59:09 +00:00 committed by GitHub
commit 465d7c55d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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