Add GiNaC

svn path=/nixpkgs/trunk/; revision=34403
This commit is contained in:
Yury G. Kudryashov 2012-06-09 13:09:41 +00:00
parent 6b6dba1bce
commit 3640b0c1e9
2 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cln, pkgconfig, readline }:
stdenv.mkDerivation rec {
name = "ginac-1.6.2";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
sha256 = "1pivcqqaf142l6vrj2azq6dxrcyzhag4za2dwicb4gsb09ax4d0g";
};
propagatedBuildInputs = [ cln ];
buildInputs = [ readline ];
buildNativeInputs = [ pkgconfig ];
configureFlags = "--disable-rpath";
meta = {
description = "GiNaC is Not a CAS";
homepage = http://www.ginac.de/;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}

View File

@ -8284,8 +8284,10 @@ let
paths = [
texLive texLiveExtra
];
};
};
};
ginac = callPackage ../applications/science/math/ginac { };
hol = callPackage ../applications/science/logic/hol { };