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:
parent
c768e1ff48
commit
7f249190c9
|
@ -1944,7 +1944,12 @@ in
|
||||||
enableExtraPlugins = true;
|
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 { };
|
asunder = callPackage ../applications/audio/asunder { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue