Merge pull request #270312 from rafaelrc7/update-mathematica

mathematica: 13.3.0 -> 13.3.1
This commit is contained in:
Emily Trau 2023-11-29 18:26:20 +11:00 committed by GitHub
commit 7b642cf00b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 3 deletions

View File

@ -77,7 +77,7 @@ callPackage real-drv {
homepage = "http://www.wolfram.com/mathematica/";
license = licenses.unfree;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ herberteuler ];
maintainers = with maintainers; [ herberteuler rafaelrc ];
platforms = [ "x86_64-linux" ];
};
}

View File

@ -158,9 +158,10 @@ in stdenv.mkDerivation {
# Remove PATH restriction, root and avahi daemon checks, and hostname call
sed -i '
s/^PATH=/# &/
s/^\s*PATH=/# &/
s/isRoot="false"/# &/
s/^checkAvahiDaemon$/# &/
s/^\s*checkAvahiDaemon$/:/
s/^\s*installBundledInstall$/:/
s/`hostname`/""/
' MathInstaller

View File

@ -7,6 +7,20 @@
*/
let versions = [
{
version = "13.3.1";
lang = "en";
language = "English";
sha256 = "sha256-0+mYVGiF4Qn3eiLIoINSHVIqT8GtlBPFRYIOF+nHyQo=";
installer = "Mathematica_13.3.1_LINUX.sh";
}
{
version = "13.3.1";
lang = "en";
language = "English";
sha256 = "sha256-03R4s05fmTcZnlZIMSI6xlLER58MIoccoCr27F8BXOk=";
installer = "Mathematica_13.3.1_BNDL_LINUX.sh";
}
{
version = "13.3.0";
lang = "en";

View File

@ -39285,10 +39285,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";
};