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

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
";
};
}

View File

@ -2671,6 +2671,9 @@ rec {
kernel = kernel_2_6_21;
systemKernel = (if (getConfig ["kernel" "version"] "2.6.21") == "2.6.22" then
kernel_2_6_22 else kernel);
kernel_2_6_20 = import ../os-specific/linux/kernel/linux-2.6.20.nix {
inherit fetchurl stdenv perl mktemp module_init_tools;
kernelPatches = [
@ -2810,7 +2813,8 @@ rec {
};
klibc = import ../os-specific/linux/klibc {
inherit fetchurl stdenv perl bison mktemp kernel;
inherit fetchurl stdenv perl bison mktemp;
kernel = systemKernel;
};
kvm = kvm12;
@ -3407,6 +3411,10 @@ rec {
inherit fetchurl stdenv ncurses openssl;
};
maxima = import ../applications/misc/maxima {
inherit fetchurl stdenv clisp;
};
mercurial = import ../applications/version-management/mercurial {
inherit fetchurl stdenv python makeWrapper;
};