about summary refs log tree commit diff
path: root/pkgs/applications/science/math/maxima
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-12-22 10:53:00 +0100
committerPeter Simons <simons@cryp.to>2014-12-22 11:20:58 +0100
commit0dd52aba89169cdf091c6886349d7f46448e63e4 (patch)
tree6ea55c567b454aa0618510a3c6234cf6389f6cdd /pkgs/applications/science/math/maxima
parentd0fdad5f36ceac69ce2b8a3f9a7d2622ad70fbff (diff)
maxima: update to version 5.35.1
Diffstat (limited to 'pkgs/applications/science/math/maxima')
-rw-r--r--pkgs/applications/science/math/maxima/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix
index ddd5dc5d6bb4c..ffc16a330542f 100644
--- a/pkgs/applications/science/math/maxima/default.nix
+++ b/pkgs/applications/science/math/maxima/default.nix
@@ -2,7 +2,7 @@
 
 let
   name    = "maxima";
-  version = "5.34.1";
+  version = "5.35.1";
 
   searchPath =
     stdenv.lib.makeSearchPath "bin"
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz";
-    sha256 = "1dw9vfzldpj7lv303xbw0wpyn6ra6i2yzwlrjbcx7j0jm5n43ji0";
+    sha256 = "1wwqvay9z6gal7bsyyyhhcwh0fy5ak4h2a446ali0x6zmybaklcy";
   };
 
   buildInputs = [sbcl texinfo perl makeWrapper];
@@ -29,10 +29,9 @@ stdenv.mkDerivation {
     ln -s ../maxima/${version}/doc $out/share/doc/maxima
   '';
 
-  # Failures in the regression test suite are not going to abort the
-  # build process. We run the suite mostly so that potential errors show
-  # up in the build log. See also:
-  # <http://sourceforge.net/tracker/?func=detail&aid=3365831&group_id=4933&atid=104933>.
+  # Failures in the regression test suite won't abort the build process. We run
+  # the suite only so that potential errors show up in the build log. See also:
+  # http://sourceforge.net/tracker/?func=detail&aid=3365831&group_id=4933&atid=104933.
   doCheck = true;
 
   enableParallelBuilding = true;