From 459104f841356362bfb9ce1c788c1d42846b2454 Mon Sep 17 00:00:00 2001 From: rafaelrc7 Date: Sun, 26 Nov 2023 19:46:17 -0300 Subject: [PATCH] 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. --- pkgs/top-level/all-packages.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d3e5a64dc013..5504eb4eb0db 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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"; };