nixpkgs/pkgs/tools/typesetting/asciidoctor/default.nix
2017-08-11 11:13:31 +09:00

18 lines
354 B
Nix

{ stdenv, lib, bundlerEnv, ruby, curl }:
bundlerEnv {
pname = "asciidoctor";
inherit ruby;
gemdir = ./.;
meta = with lib; {
description = "A faster Asciidoc processor written in Ruby";
homepage = http://asciidoctor.org/;
license = licenses.mit;
maintainers = with maintainers; [ gpyh ];
platforms = platforms.unix;
};
}