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

31 lines
742 B
Nix
Raw Normal View History

2021-03-25 14:30:07 +00:00
{ lib, stdenv, fetchurl, cln, pkg-config, readline, gmp, python3 }:
stdenv.mkDerivation rec {
2020-10-31 20:07:21 +00:00
name = "ginac-1.8.0";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
2020-10-31 20:07:21 +00:00
sha256 = "0l9byzfxq3f9az5pcdldnl95ws8mpirkqky46f973mvxi5541d24";
};
propagatedBuildInputs = [ cln ];
2021-01-15 13:21:58 +00:00
buildInputs = [ readline ] ++ lib.optional stdenv.isDarwin gmp;
2021-03-25 14:30:07 +00:00
nativeBuildInputs = [ pkg-config python3 ];
strictDeps = true;
2017-07-13 17:34:45 +00:00
preConfigure = "patchShebangs ginsh";
2018-07-25 21:44:21 +00: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 18:02:23 +00:00
license = licenses.gpl2;
platforms = platforms.all;
};
}