2016-11-23 01:47:43 +00:00
|
|
|
{ stdenv, fetchurl
|
2018-04-23 18:46:12 +01:00
|
|
|
, gmp, readline, libX11, tex, perl
|
|
|
|
, withThread ? true, libpthreadstubs
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert withThread -> libpthreadstubs != null;
|
2010-12-05 19:11:21 +00:00
|
|
|
|
2013-07-19 16:20:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-23 01:47:43 +00:00
|
|
|
|
2014-09-02 10:41:46 +01:00
|
|
|
name = "pari-${version}";
|
2018-12-15 06:17:15 +00:00
|
|
|
version = "2.11.1";
|
2013-07-19 16:20:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
|
2018-12-15 06:17:15 +00:00
|
|
|
sha256 = "1jfax92jpydjd02fwl30r6b8kfzqqd6sm4yx94gidyz9lqjb7a94";
|
2010-12-05 19:11:21 +00:00
|
|
|
};
|
|
|
|
|
2018-04-23 18:46:12 +01:00
|
|
|
buildInputs = [
|
|
|
|
gmp
|
|
|
|
readline
|
|
|
|
libX11
|
|
|
|
tex
|
|
|
|
perl
|
|
|
|
] ++ stdenv.lib.optionals withThread [
|
|
|
|
libpthreadstubs
|
|
|
|
];
|
2013-07-19 16:20:37 +01:00
|
|
|
|
|
|
|
configureScript = "./Configure";
|
2017-10-30 08:52:29 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gmp=${gmp.dev}"
|
|
|
|
"--with-readline=${readline.dev}"
|
2018-04-23 18:46:12 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin "--host=x86_64-darwin"
|
|
|
|
++ stdenv.lib.optional withThread "--mt=pthread";
|
2010-12-05 19:11:21 +00:00
|
|
|
|
2017-10-30 08:52:29 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export LD=$CC
|
|
|
|
'';
|
|
|
|
|
|
|
|
postConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
echo 'echo x86_64-darwin' > config/arch-osname
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "all" ];
|
2016-11-23 01:47:43 +00:00
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-12-05 19:11:21 +00:00
|
|
|
description = "Computer algebra system for high-performance number theory computations";
|
2016-11-23 01:47:43 +00:00
|
|
|
longDescription = ''
|
|
|
|
PARI/GP is a widely used computer algebra system designed for fast
|
|
|
|
computations in number theory (factorizations, algebraic number theory,
|
|
|
|
elliptic curves...), but also contains a large number of other useful
|
|
|
|
functions to compute with mathematical entities such as matrices,
|
|
|
|
polynomials, power series, algebraic numbers etc., and a lot of
|
|
|
|
transcendental functions. PARI is also available as a C library to allow
|
|
|
|
for faster computations.
|
|
|
|
|
|
|
|
Originally developed by Henri Cohen and his co-workers (Université
|
|
|
|
Bordeaux I, France), PARI is now under the GPL and maintained by Karim
|
|
|
|
Belabas with the help of many volunteer contributors.
|
|
|
|
|
2017-10-30 08:52:29 +00:00
|
|
|
- PARI is a C library, allowing fast computations.
|
2016-11-23 01:47:43 +00:00
|
|
|
- gp is an easy-to-use interactive shell giving access to the
|
|
|
|
PARI functions.
|
|
|
|
- GP is the name of gp's scripting language.
|
2017-10-30 08:52:29 +00:00
|
|
|
- gp2c, the GP-to-C compiler, combines the best of both worlds
|
|
|
|
by compiling GP scripts to the C language and transparently loading
|
2016-11-23 01:47:43 +00:00
|
|
|
the resulting functions into gp. (gp2c-compiled scripts will typically
|
|
|
|
run 3 or 4 times faster.) gp2c currently only understands a subset
|
|
|
|
of the GP language.
|
|
|
|
'';
|
2018-07-26 15:46:33 +01:00
|
|
|
homepage = http://pari.math.u-bordeaux.fr;
|
|
|
|
downloadPage = http://pari.math.u-bordeaux.fr/download.html;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-11-23 01:47:43 +00:00
|
|
|
maintainers = with maintainers; [ ertes raskin AndersonTorres ];
|
2017-10-30 08:52:29 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2014-09-02 10:41:46 +01:00
|
|
|
updateWalker = true;
|
2010-12-05 19:11:21 +00:00
|
|
|
};
|
2013-07-19 16:20:37 +01:00
|
|
|
}
|