2016-11-23 01:47:43 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pari, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "gp2c-${version}";
|
2018-03-16 19:51:03 +00:00
|
|
|
version = "0.0.10pl1";
|
2016-11-23 01:47:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://pari.math.u-bordeaux.fr/pub/pari/GP2C/${name}.tar.gz";
|
2018-03-16 19:51:03 +00:00
|
|
|
sha256 = "16hgmdvzxbmv63x1f72q1xgfyh0qhx7kaf9nbaamy0gdawxjxcav";
|
2016-11-23 01:47:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pari perl ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-paricfg=${pari}/lib/pari/pari.cfg"
|
|
|
|
"--with-perl=${perl}/bin/perl" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A compiler to translate GP scripts to PARI programs";
|
|
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
|
|
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
# TODO: add it as "source file" for default package
|