31 lines
846 B
Nix
31 lines
846 B
Nix
{ stdenv, fetchurl, gmp, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.7.2";
|
|
name = "pari-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
|
|
sha256 = "1b0hzyhafpxhmiljyhnsh6c27ydsvb2599fshwq2fjfm96awjxmc";
|
|
};
|
|
|
|
buildInputs = [gmp readline];
|
|
|
|
configureScript = "./Configure";
|
|
configureFlags =
|
|
"--with-gmp=${gmp} " +
|
|
"--with-readline=${readline}";
|
|
|
|
meta = {
|
|
description = "Computer algebra system for high-performance number theory computations";
|
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
|
license = "GPLv2+";
|
|
maintainers = with stdenv.lib.maintainers; [ertes raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
inherit version;
|
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
|
updateWalker = true;
|
|
};
|
|
}
|