pari_alpha: init at 2.8.0.alpha: planning to use for Sage

This commit is contained in:
Michael Raskin 2016-10-10 19:11:58 +02:00
parent 411d5742ca
commit 71f659d86d
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchurl, gmp, readline }:
stdenv.mkDerivation rec {
version = "2.8.0.alpha";
name = "pari-${version}";
src = fetchurl {
url = "http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
sha256 = "1nrjybrqv55p669rmlkghb940hzf63vnpn34sbwhy9zlbw3hg305";
};
buildInputs = [gmp readline];
configureScript = "./Configure";
configureFlags =
"--with-gmp=${gmp.dev} " +
"--with-readline=${readline.dev}";
meta = with stdenv.lib; {
description = "Computer algebra system for high-performance number theory computations";
homepage = "http://pari.math.u-bordeaux.fr/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ertes raskin ];
platforms = platforms.linux;
inherit version;
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
updateWalker = true;
};
}

View File

@ -16678,6 +16678,7 @@ in
wxmaxima = callPackage ../applications/science/math/wxmaxima { wxGTK = wxGTK30; };
pari = callPackage ../applications/science/math/pari {};
pari_alpha = callPackage ../applications/science/math/pari/alpha.nix {};
ratpoints = callPackage ../applications/science/math/ratpoints {};