nixpkgs/pkgs/applications/science/math/pari/gp2c.nix

29 lines
741 B
Nix
Raw Normal View History

2020-10-10 03:15:03 +01:00
{ stdenv
, pari
, fetchurl
, perl }:
stdenv.mkDerivation rec {
pname = "gp2c";
2020-10-10 03:15:03 +01:00
version = "0.0.11pl4";
src = fetchurl {
url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${pname}-${version}.tar.gz";
2020-10-10 03:15:03 +01:00
sha256 = "sha256-QGocEXxTahB5fHhlWtHXgMEl6brQ34LNwScxHNuB1rI=";
};
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";
2020-10-10 03:15:03 +01:00
homepage = "http://pari.math.u-bordeaux.fr/";
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
2020-10-10 03:15:03 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
};
}