2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
with pkgs; {
|
2024-05-02 00:46:19 +00:00
|
|
|
asciidoc = callPackage ./. {
|
2024-05-13 21:24:10 +00:00
|
|
|
inherit (python3.pkgs)
|
|
|
|
pygments matplotlib numpy aafigure recursive-pth-loader;
|
2024-05-02 00:46:19 +00:00
|
|
|
w3m = w3m-batch;
|
|
|
|
enableStandardFeatures = false;
|
|
|
|
};
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
asciidoc-full = asciidoc.override { enableStandardFeatures = true; };
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
asciidoc-full-with-plugins = asciidoc.override {
|
|
|
|
enableStandardFeatures = true;
|
|
|
|
enableExtraPlugins = true;
|
|
|
|
};
|
|
|
|
}
|