29 lines
724 B
Nix
29 lines
724 B
Nix
|
{ stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "ginac-1.7.9";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "${meta.homepage}/${name}.tar.bz2";
|
||
|
sha256 = "08cqc87qq4w6z3l053x5gfqsa4zkgkicq8skxsbsj39nli1zzkb7";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ cln ];
|
||
|
|
||
|
buildInputs = [ readline ] ++ stdenv.lib.optional stdenv.isDarwin gmp;
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig python ];
|
||
|
|
||
|
preConfigure = "patchShebangs ginsh";
|
||
|
|
||
|
configureFlags = [ "--disable-rpath" ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "GiNaC is Not a CAS";
|
||
|
homepage = "http://www.ginac.de/";
|
||
|
maintainers = with maintainers; [ lovek323 ];
|
||
|
license = licenses.gpl2;
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|