about summary refs log tree commit diff
path: root/pkgs/applications/science/math/maxima
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-12-22 12:30:19 +0000
committerPeter Simons <simons@cryp.to>2011-12-22 12:30:19 +0000
commitc7bed207d82372741c56a64191479d0f09e4a805 (patch)
treebe0e3d7ee191d973893f33858202dd54c7db36fe /pkgs/applications/science/math/maxima
parent30afcc3af37bfc30c91006228be7cc73768accad (diff)
maxima: updated to version 5.26.0
svn path=/nixpkgs/trunk/; revision=31042
Diffstat (limited to 'pkgs/applications/science/math/maxima')
-rw-r--r--pkgs/applications/science/math/maxima/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix
index b794990976043..02b7017d2953f 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.25.1";
+  version = "5.26.0";
 
   searchPath =
     stdenv.lib.makeSearchPath "bin"
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz";
-    sha256 = "8e98ad742151e52edb56337bd62c8a9749f7b598cb6ed4e991980e0e6f89706a";
+    sha256 = "887105c99a91122f3e622472aa39bdd1ca8ed6198cf09b49917f63f8396dced9";
   };
 
   buildInputs = [sbcl texinfo perl makeWrapper];
@@ -29,8 +29,9 @@ stdenv.mkDerivation {
     ln -s ../maxima/${version}/doc $out/share/doc/maxima
   '';
 
-  # The regression test suite has minor failures, but curiously enough
-  # this doesn't seem to abort the build process:
+  # 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>.
   doCheck = true;