asciidoctor: disable epubcheck by default (#65018)

`epubcheck` pulls in Java, which can be problematic on some platforms,
and some fairly core software uses asciidoctor to build docs.
This commit is contained in:
Michael Peyton Jones
2019-07-18 17:16:26 +00:00
committed by zimbatm
parent c768e1ff48
commit 7f249190c9
+6 -1
View File
@@ -1944,7 +1944,12 @@ in
enableExtraPlugins = true;
});
asciidoctor = callPackage ../tools/typesetting/asciidoctor { kindlegen = null; };
asciidoctor = callPackage ../tools/typesetting/asciidoctor {
# kindlegen is unfree, don't enable by default
kindlegen = null;
# epubcheck pulls in Java, which is problematic on some platforms
epubcheck = null;
};
asunder = callPackage ../applications/audio/asunder { };