core/pkgs/by-name/as/asciidoc/packages.nix

24 lines
453 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
2024-06-30 08:16:52 +00:00
with pkgs; {
2024-05-02 00:46:19 +00:00
asciidoc = callPackage ./. {
2024-06-30 08:16:52 +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-06-30 08:16:52 +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;
};
}