Adding 'yacas', a CAS implemented in C++.

svn path=/nixpkgs/trunk/; revision=23074
This commit is contained in:
Lluís Batlle i Rossell 2010-08-09 21:58:21 +00:00
parent 153577d0f3
commit 9cba74c95a
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, perl}:
stdenv.mkDerivation rec {
name = "yacas-1.2.2";
src = fetchurl {
url = "http://yacas.sourceforge.net/backups/${name}.tar.gz";
sha256 = "1dmafm3w0lm5w211nwkfzaid1rvvmgskz7k4500pjhgdczi5sd78";
};
# Perl is only for the documentation
buildInputs = [ perl ];
patches = [ ./gcc43.patch ];
meta = {
description = "Easy to use, general purpose Computer Algebra System";
homepage = http://yacas.sourceforge.net/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}

View file

@ -6710,6 +6710,8 @@ let
withX = true;
};
yacas = callPackage ../applications/science/math/yacas { };
### SCIENCE / MISC
golly = callPackage ../applications/science/misc/golly { };