mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
Adding 'yacas', a CAS implemented in C++.
svn path=/nixpkgs/trunk/; revision=23074
This commit is contained in:
parent
153577d0f3
commit
9cba74c95a
23
pkgs/applications/science/math/yacas/default.nix
Normal file
23
pkgs/applications/science/math/yacas/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -6710,6 +6710,8 @@ let
|
||||
withX = true;
|
||||
};
|
||||
|
||||
yacas = callPackage ../applications/science/math/yacas { };
|
||||
|
||||
### SCIENCE / MISC
|
||||
|
||||
golly = callPackage ../applications/science/misc/golly { };
|
||||
|
Loading…
Reference in New Issue
Block a user