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