34cba0b001
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ginac/versions
29 lines
722 B
Nix
29 lines
722 B
Nix
{ stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ginac-1.7.5";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
|
sha256 = "11v8dpdfq8ybbbadyakp19xc7jgckplbbj6q2hh1c2hj5ps6njz7";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|