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.
This commit is contained in:
rafaelrc7
2023-11-26 19:46:17 -03:00
parent cc1b0c4091
commit 459104f841
+9
View File
@@ -39306,10 +39306,19 @@ with pkgs;
mathematica = callPackage ../applications/science/math/mathematica { };
mathematica-webdoc = callPackage ../applications/science/math/mathematica {
webdoc = true;
};
mathematica-cuda = callPackage ../applications/science/math/mathematica {
cudaSupport = true;
};
mathematica-webdoc-cuda = callPackage ../applications/science/math/mathematica {
webdoc = true;
cudaSupport = true;
};
mathematica9 = callPackage ../applications/science/math/mathematica {
version = "9";
};