about summary refs log tree commit diff
path: root/pkgs/tools/typesetting/asciidoctor/default.nix
blob: 5f78c12508d1429b6913b9a9b3b9259a9f07f057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, bundlerApp
, bundlerUpdateScript
}:

bundlerApp {
  pname = "asciidoctor";
  gemdir = ./.;

  exes = [
    "asciidoctor"
    "asciidoctor-pdf"
  ];

  passthru = {
    updateScript = bundlerUpdateScript "asciidoctor";
  };

  meta = with lib; {
    description = "A faster Asciidoc processor written in Ruby";
    homepage = "https://asciidoctor.org/";
    license = licenses.mit;
    maintainers = with maintainers; [ gpyh nicknovitski ];
    platforms = platforms.unix;
  };
}