pari_alpha: init at 2.8.0.alpha: planning to use for Sage
This commit is contained in:
parent
411d5742ca
commit
71f659d86d
30
pkgs/applications/science/math/pari/alpha.nix
Normal file
30
pkgs/applications/science/math/pari/alpha.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user