asciidoc-full-with-plugins: new top-level attribute

Previously you had to write the override yourself, now it is
conveniently available in all-packages.nix for use in "nix-env" etc.

The list of plugins are currently hardcoded:
  ditaa, mscgen, qrcode, matplotlib, aafigure, deckjs, odf
This commit is contained in:
Bjørn Forsman 2015-07-25 14:12:27 +02:00
parent 0770a49d8c
commit 67757f52b1

View File

@ -964,6 +964,12 @@ let
enableStandardFeatures = true;
});
asciidoc-full-with-plugins = appendToName "full-with-plugins" (asciidoc.override {
inherit (pythonPackages) pygments;
enableStandardFeatures = true;
enableExtraPlugins = true;
});
autossh = callPackage ../tools/networking/autossh { };
asynk = callPackage ../tools/networking/asynk { };