2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-10-16 20:44:37 +00:00
|
|
|
, pari
|
|
|
|
, fetchurl
|
|
|
|
, perl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gp2c";
|
2020-11-15 13:44:38 +00:00
|
|
|
version = "0.0.12";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
|
2020-11-15 13:44:38 +00:00
|
|
|
sha256 = "039ip7qkwwv46wrcdrz7y12m30kazzkjr44kqbc0h137g4wzd7zf";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pari perl ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-paricfg=${pari}/lib/pari/pari.cfg"
|
|
|
|
"--with-perl=${perl}/bin/perl" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A compiler to translate GP scripts to PARI programs";
|
2020-10-16 20:44:37 +00:00
|
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
2020-04-24 23:36:52 +00:00
|
|
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
2020-10-16 20:44:37 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|