mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
asciidoctor: expose all the bins
asciidoctor has multiple binaries, expose them all to the user
This commit is contained in:
parent
04051ee9d0
commit
6f56749b07
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue