mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
30 lines
852 B
Nix
30 lines
852 B
Nix
{ stdenv, fetchurl, gmp, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.7.5";
|
|
name = "pari-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
|
|
sha256 = "0c8l83a0gjq73r9hndsrzkypwxvnnm4pxkkzbg6jm95m80nzwh11";
|
|
};
|
|
|
|
buildInputs = [gmp readline];
|
|
|
|
configureScript = "./Configure";
|
|
configureFlags =
|
|
"--with-gmp=${gmp} " +
|
|
"--with-readline=${readline}";
|
|
|
|
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;
|
|
};
|
|
}
|