asciidoc: add/update meta attributes

This commit is contained in:
Bjørn Forsman 2013-09-27 21:21:47 +02:00
parent 7f28c64f11
commit face28ea3d

View File

@ -161,14 +161,21 @@ stdenv.mkDerivation rec {
preInstall = "mkdir -p $out/etc/vim"; preInstall = "mkdir -p $out/etc/vim";
meta = { meta = with stdenv.lib; {
homepage = "http://www.methods.co.nz/asciidoc/"; description = "Text-based document generation system";
description = "ASCII text-based document generation system";
license = "GPLv2+";
longDescription = '' longDescription = ''
AsciiDoc is a text-based document generation system. AsciiDoc AsciiDoc is a text document format for writing notes, documentation,
input files can be translated to HTML and DocBook markups. articles, books, ebooks, slideshows, web pages, man pages and blogs.
AsciiDoc files can be translated to many formats including HTML, PDF,
EPUB, man page.
AsciiDoc is highly configurable: both the AsciiDoc source file syntax and
the backend output markups (which can be almost any type of SGML/XML
markup) can be customized and extended by the user.
''; '';
homepage = "http://www.methods.co.nz/asciidoc/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
}; };
} }