8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
28 lines
724 B
Nix
28 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;
|
|
};
|
|
}
|