From 6c4a6e83b4665ba1b5effa7d153c587e2668d8ed Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Fri, 5 Sep 2008 17:21:45 +0000 Subject: Move maxima close to scilab. (applications/science/math) Requested by Michael Raskin. svn path=/nixpkgs/trunk/; revision=12812 --- pkgs/applications/science/math/maxima/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/applications/science/math/maxima/default.nix (limited to 'pkgs/applications/science') diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix new file mode 100644 index 000000000000..72770c9a918f --- /dev/null +++ b/pkgs/applications/science/math/maxima/default.nix @@ -0,0 +1,17 @@ +args: with args; +stdenv.mkDerivation { + name = "maxima-5.13.0"; + + src = fetchurl { + name = "maxima-5.13.0.tar.gz"; + url = mirror://sf/maxima/maxima-5.13.0.tar.gz; + sha256 = "11zidbbp4cbgsmdfyf9w0j7345ydka469ba0my7p73zqhnby09cn"; + }; + + buildInputs =[clisp]; + + meta = { + description = "Maxima computer algebra system"; + homepage = http://maxima.sourceforge.net; + }; +} -- cgit 1.4.1