about summary refs log tree commit diff
path: root/pkgs/applications/misc/maxima/default.nix
blob: ad44a7b5d0fd39be88735d6acdeb344434036ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
";
  };
}