forked from mirrors/nixpkgs
perlPackages.MathPari: init at 2.030518
This commit is contained in:
parent
58ee9e4266
commit
bf1325f6d1
|
@ -11299,6 +11299,27 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
MathPari = buildPerlPackage rec {
|
||||
pname = "Math-Pari";
|
||||
version = "2.030518";
|
||||
nativeBuildInputs = [ pkgs.unzip ];
|
||||
pariversion = "2.1.7";
|
||||
pari_tgz = fetchurl {
|
||||
url = "https://pari.math.u-bordeaux.fr/pub/pari/OLD/2.1/pari-${pariversion}.tgz";
|
||||
sha256 = "1yjml5z1qdn258qh6329v7vib2gyx6q2np0s5ybci0rhmz6z4hli";
|
||||
};
|
||||
preConfigure = "cp ${pari_tgz} pari-${pariversion}.tgz";
|
||||
makeMakerFlags = "pari_tgz=pari-${pariversion}.tgz";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/I/IL/ILYAZ/modules/${pname}-${version}.zip";
|
||||
sha256 = "dc38955a9690be6bafa8de2526212377c3ec9fe8da5ec02263a9caf94b58bb91";
|
||||
};
|
||||
meta = {
|
||||
description = "Perl interface to PARI";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
MathPlanePath = buildPerlPackage {
|
||||
pname = "Math-PlanePath";
|
||||
version = "127";
|
||||
|
|
Loading…
Reference in a new issue