Adding PARI/GP
svn path=/nixpkgs/trunk/; revision=24983
This commit is contained in:
parent
7768fa0178
commit
011d71dcb8
50
pkgs/applications/science/math/pari/default.nix
Normal file
50
pkgs/applications/science/math/pari/default.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
x@{builderDefsPackage
|
||||||
|
, perl, zlib, gmp, readline
|
||||||
|
, ...}:
|
||||||
|
builderDefsPackage
|
||||||
|
(a :
|
||||||
|
let
|
||||||
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||||
|
[];
|
||||||
|
|
||||||
|
buildInputs = map (n: builtins.getAttr n x)
|
||||||
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||||
|
sourceInfo = rec {
|
||||||
|
baseName="pari";
|
||||||
|
version="2.3.5";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
url="http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz";
|
||||||
|
hash="124xr2jdz2c15v45i1zvgylng44lhf23729a1mk7ci1vywdaxpa7";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
rec {
|
||||||
|
src = a.fetchurl {
|
||||||
|
url = sourceInfo.url;
|
||||||
|
sha256 = sourceInfo.hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
inherit (sourceInfo) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
|
||||||
|
/* doConfigure should be removed if not needed */
|
||||||
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||||
|
configureCommand="./Configure";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Computer algebra system for high-performance number theory computations";
|
||||||
|
maintainers = with a.lib.maintainers;
|
||||||
|
[
|
||||||
|
raskin
|
||||||
|
];
|
||||||
|
platforms = with a.lib.platforms;
|
||||||
|
linux;
|
||||||
|
license = "GPLv2+";
|
||||||
|
homepage = "http://pari.math.u-bordeaux.fr/";
|
||||||
|
};
|
||||||
|
passthru = {
|
||||||
|
updateInfo = {
|
||||||
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}) x
|
||||||
|
|
@ -7026,6 +7026,8 @@ let
|
|||||||
|
|
||||||
wxmaxima = callPackage ../applications/science/math/wxmaxima { };
|
wxmaxima = callPackage ../applications/science/math/wxmaxima { };
|
||||||
|
|
||||||
|
pari = callPackage ../applications/science/math/pari {};
|
||||||
|
|
||||||
singular = callPackage ../applications/science/math/singular {};
|
singular = callPackage ../applications/science/math/singular {};
|
||||||
|
|
||||||
scilab = callPackage ../applications/science/math/scilab {
|
scilab = callPackage ../applications/science/math/scilab {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user