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

29 lines
722 B
Nix
Raw Normal View History

2017-07-13 18:34:45 +01:00
{ stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }:
stdenv.mkDerivation rec {
name = "ginac-1.7.8";
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
sha256 = "0rvhdagmrs8ynnylwnxnmmfz1j9zk1g2rr7w6xczsbn7lqd511hc";
};
propagatedBuildInputs = [ cln ];
buildInputs = [ readline ] ++ stdenv.lib.optional stdenv.isDarwin gmp;
2017-07-13 18:34:45 +01:00
nativeBuildInputs = [ pkgconfig python ];
preConfigure = "patchShebangs ginsh";
2018-07-25 22:44:21 +01:00
configureFlags = [ "--disable-rpath" ];
meta = with stdenv.lib; {
description = "GiNaC is Not a CAS";
homepage = http://www.ginac.de/;
maintainers = with maintainers; [ lovek323 ];
2018-08-20 19:02:23 +01:00
license = licenses.gpl2;
platforms = platforms.all;
};
}