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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
453 B
Nix
Raw Normal View History

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