Merge pull request #70604 from moaxcp/asciidoctorj
asciidoctorj init at 2.1.0
This commit is contained in:
commit
32b0cb0f46
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchzip, jdk, makeWrapper }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "asciidoctorj";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "http://dl.bintray.com/asciidoctor/maven/org/asciidoctor/${pname}/${version}/${pname}-${version}-bin.zip";
|
||||||
|
sha256 = "19fl4y3xlkmmgf5vyyb3k9p6nyglck9l53r6x12zil01q49g0zba";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
rm bin/asciidoctorj.bat
|
||||||
|
cp -r . $out
|
||||||
|
wrapProgram $out/bin/asciidoctorj \
|
||||||
|
--prefix JAVA_HOME : ${jdk}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = ''
|
||||||
|
AsciidoctorJ is the official library for running Asciidoctor on the JVM.
|
||||||
|
'';
|
||||||
|
longDescription = ''
|
||||||
|
AsciidoctorJ is the official library for running Asciidoctor on the JVM.
|
||||||
|
Using AsciidoctorJ, you can convert AsciiDoc content or analyze the
|
||||||
|
structure of a parsed AsciiDoc document from Java and other JVM
|
||||||
|
languages.
|
||||||
|
'';
|
||||||
|
homepage = https://asciidoctor.org/docs/asciidoctorj/;
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ moaxcp ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2126,6 +2126,8 @@ in
|
||||||
epubcheck = null;
|
epubcheck = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
asciidoctorj = callPackage ../tools/typesetting/asciidoctorj { };
|
||||||
|
|
||||||
asunder = callPackage ../applications/audio/asunder { };
|
asunder = callPackage ../applications/audio/asunder { };
|
||||||
|
|
||||||
autossh = callPackage ../tools/networking/autossh { };
|
autossh = callPackage ../tools/networking/autossh { };
|
||||||
|
|
Loading…
Reference in New Issue