nixpkgs/pkgs/applications/science/math/pari/default.nix

31 lines
852 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp, readline }:
stdenv.mkDerivation rec {
2016-01-01 02:15:04 +01:00
version = "2.7.5";
2014-09-02 11:41:46 +02:00
name = "pari-${version}";
src = fetchurl {
url = "http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
2016-01-01 02:15:04 +01:00
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;
2014-09-02 11:41:46 +02:00
inherit version;
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
updateWalker = true;
};
}