2009-10-29 12:57:45 +01:00
|
|
|
{ stdenv, fetchurl, clisp }:
|
|
|
|
|
|
|
|
let
|
|
|
|
name = "maxima";
|
2010-08-26 13:44:43 +02:00
|
|
|
version = "5.22.1";
|
2009-10-29 12:57:45 +01:00
|
|
|
in
|
2007-09-26 02:19:26 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-10-29 12:57:45 +01:00
|
|
|
name = "${name}-${version}";
|
2007-09-26 02:19:26 +02:00
|
|
|
|
2009-01-04 21:18:10 +01:00
|
|
|
src = fetchurl {
|
2009-10-29 12:57:45 +01:00
|
|
|
url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz";
|
2010-08-26 13:44:43 +02:00
|
|
|
sha256 = "0sdrv3lra6j3ylaqsblnd3x7rq4ybafyj7rb114ycadpx2qf06lq";
|
2009-01-04 21:18:10 +01:00
|
|
|
};
|
2007-09-26 02:19:26 +02:00
|
|
|
|
2009-10-29 12:57:45 +01:00
|
|
|
buildInputs = [clisp];
|
2007-09-26 02:19:26 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-01-30 20:49:42 +01:00
|
|
|
description = "Maxima computer algebra system";
|
2010-08-26 13:44:43 +02:00
|
|
|
homepage = "http://maxima.sourceforge.net";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Maxima is a fairly complete computer algebra system written in
|
|
|
|
lisp with an emphasis on symbolic computation. It is based on
|
|
|
|
DOE-MACSYMA and licensed under the GPL. Its abilities include
|
|
|
|
symbolic integration, 3D plotting, and an ODE solver.
|
|
|
|
'';
|
|
|
|
|
2010-05-09 18:01:44 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-09-26 02:19:26 +02:00
|
|
|
};
|
|
|
|
}
|