2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-03 02:18:15 +00:00
|
|
|
name = "ginac-1.8.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
2020-11-03 02:18:15 +00:00
|
|
|
sha256 = "0l9byzfxq3f9az5pcdldnl95ws8mpirkqky46f973mvxi5541d24";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cln ];
|
|
|
|
|
2021-01-17 00:15:33 +00:00
|
|
|
buildInputs = [ readline ] ++ lib.optional stdenv.isDarwin gmp;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
|
|
|
|
preConfigure = "patchShebangs ginsh";
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-rpath" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "GiNaC is Not a CAS";
|
|
|
|
homepage = "http://www.ginac.de/";
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|