Unverified Commit 459104f8 authored by rafaelrc7's avatar rafaelrc7
Browse files

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.
parent cc1b0c40
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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";
  };