mathematica: add webdoc versions to all-packages

The default mathematica package uses the BNDL version of the installer,
which is much larger and results in a bigger package than the webdoc
version. This change makes it much easier to install the webdoc version.

+9
+9
pkgs/top-level/all-packages.nix
··· 39306 39307 mathematica = callPackage ../applications/science/math/mathematica { }; 39308 39309 mathematica-cuda = callPackage ../applications/science/math/mathematica { 39310 cudaSupport = true; 39311 }; 39312
··· 39306 39307 mathematica = callPackage ../applications/science/math/mathematica { }; 39308 39309 + mathematica-webdoc = callPackage ../applications/science/math/mathematica { 39310 + webdoc = true; 39311 + }; 39312 + 39313 mathematica-cuda = callPackage ../applications/science/math/mathematica { 39314 + cudaSupport = true; 39315 + }; 39316 + 39317 + mathematica-webdoc-cuda = callPackage ../applications/science/math/mathematica { 39318 + webdoc = true; 39319 cudaSupport = true; 39320 }; 39321