2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, cln, pkg-config, readline, gmp, python }:
|
2012-06-09 14:09:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-10-31 20:07:21 +00:00
|
|
|
name = "ginac-1.8.0";
|
2012-06-09 14:09:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-09-08 00:59:45 +01:00
|
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
2020-10-31 20:07:21 +00:00
|
|
|
sha256 = "0l9byzfxq3f9az5pcdldnl95ws8mpirkqky46f973mvxi5541d24";
|
2012-06-09 14:09:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cln ];
|
2013-09-08 00:59:45 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
buildInputs = [ readline ] ++ lib.optional stdenv.isDarwin gmp;
|
2012-06-09 14:09:41 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config python ];
|
2017-07-13 18:34:45 +01:00
|
|
|
|
|
|
|
preConfigure = "patchShebangs ginsh";
|
2012-06-09 14:09:41 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--disable-rpath" ];
|
2012-06-09 14:09:41 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-06-09 14:09:41 +01:00
|
|
|
description = "GiNaC is Not a CAS";
|
2021-01-26 00:33:42 +00:00
|
|
|
homepage = "https://www.ginac.de/";
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2018-08-20 19:02:23 +01:00
|
|
|
license = licenses.gpl2;
|
2013-09-08 00:59:45 +01:00
|
|
|
platforms = platforms.all;
|
2012-06-09 14:09:41 +01:00
|
|
|
};
|
|
|
|
}
|