Added maxima

svn path=/nixpkgs/trunk/; revision=9372
This commit is contained in:
Michael Raskin
2007-09-26 00:19:26 +00:00
parent dd5daab9d1
commit 8036507a29
2 changed files with 27 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
args: with args;
stdenv.mkDerivation {
name = "maxima-5.13.0";
src = fetchurl {
name = "maxima-5.13.0.tar.gz";
url = http://downloads.sourceforge.net/maxima/maxima-5.13.0.tar.gz?modtime=1188046120&big_mirror=1;
sha256 = "11zidbbp4cbgsmdfyf9w0j7345ydka469ba0my7p73zqhnby09cn";
};
buildInputs =[clisp];
meta = {
description = "
Maxima computer algebra system
";
};
}