summary refs log blame commit diff
path: root/pkgs/tools/typesetting/asciidoctor/default.nix
blob: 5f78c12508d1429b6913b9a9b3b9259a9f07f057 (plain) (tree)
1
2
3
4
5
6
7
8
9


                     
  
 


                        
 



                     
 


                                                     
 





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