nixpkgs/pkgs/tools/typesetting/asciidoctor/default.nix
Doron Behar 7fb66a2f79 asciidoctor: Remove some extensions and cleanup
Since we have `asciidoctor-with-extensions` now, `asciidoctor` can
include less extensions to reduce closure space.
2021-12-10 09:30:14 +02:00

27 lines
487 B
Nix

{ 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;
};
}