Unverified Commit 7b642cf0 authored by Emily Trau's avatar Emily Trau Committed by GitHub
Browse files

Merge pull request #270312 from rafaelrc7/update-mathematica

mathematica: 13.3.0 -> 13.3.1
parents 0fde76b6 0bd493d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
}
+3 −2
Original line number Diff line number Diff line
@@ -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

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