2009-10-29 11:57:45 +00:00
|
|
|
{ stdenv, fetchurl, clisp }:
|
|
|
|
|
|
|
|
let
|
|
|
|
name = "maxima";
|
2010-08-26 12:44:43 +01:00
|
|
|
version = "5.22.1";
|
2009-10-29 11:57:45 +00:00
|
|
|
in
|
2007-09-26 01:19:26 +01:00
|
|
|
stdenv.mkDerivation {
|
2009-10-29 11:57:45 +00:00
|
|
|
name = "${name}-${version}";
|
2007-09-26 01:19:26 +01:00
|
|
|
|
2009-01-04 20:18:10 +00:00
|
|
|
src = fetchurl {
|
2009-10-29 11:57:45 +00:00
|
|
|
url = "mirror://sourceforge/${name}/${name}-${version}.tar.gz";
|
2010-08-26 12:44:43 +01:00
|
|
|
sha256 = "0sdrv3lra6j3ylaqsblnd3x7rq4ybafyj7rb114ycadpx2qf06lq";
|
2009-01-04 20:18:10 +00:00
|
|
|
};
|
2007-09-26 01:19:26 +01:00
|
|
|
|
2009-10-29 11:57:45 +00:00
|
|
|
buildInputs = [clisp];
|
2007-09-26 01:19:26 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-01-30 19:49:42 +00:00
|
|
|
description = "Maxima computer algebra system";
|
2010-08-26 12:44:43 +01:00
|
|
|
homepage = "http://maxima.sourceforge.net";
|
2010-08-26 18:57:14 +01:00
|
|
|
license = "GPLv2";
|
2010-08-26 12:44:43 +01:00
|
|
|
|
|
|
|
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-08-26 12:49:54 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-05-09 17:01:44 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-09-26 01:19:26 +01:00
|
|
|
};
|
|
|
|
}
|