nixpkgs/pkgs/applications/science/math/ginac/default.nix

31 lines
742 B
Nix
Raw Normal View History

2021-03-25 15:30:07 +01:00
{ lib, stdenv, fetchurl, cln, pkg-config, readline, gmp, python3 }:
stdenv.mkDerivation rec {
2020-10-31 21:07:21 +01:00
name = "ginac-1.8.0";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
2020-10-31 21:07:21 +01:00
sha256 = "0l9byzfxq3f9az5pcdldnl95ws8mpirkqky46f973mvxi5541d24";
};
propagatedBuildInputs = [ cln ];
2021-01-15 14:21:58 +01:00
buildInputs = [ readline ] ++ lib.optional stdenv.isDarwin gmp;
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";
2018-07-25 23:44:21 +02:00
configureFlags = [ "--disable-rpath" ];
meta = with lib; {
description = "GiNaC is Not a CAS";
homepage = "https://www.ginac.de/";
maintainers = with maintainers; [ lovek323 ];
2018-08-20 20:02:23 +02:00
license = licenses.gpl2;
platforms = platforms.all;
};
}