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

31 lines
852 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp, readline }:
stdenv.mkDerivation rec {
2015-07-04 20:57:56 +02:00
version = "2.7.4";
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";
2015-07-04 20:57:56 +02:00
sha256 = "0k1qqagfl6zn7gvwmsqffj6g9yrzqvszwh2mblhmxpjlw1pigfh8";
};
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;
};
}