3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/sage/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

2017-03-13 07:34:55 +00:00
{ stdenv, fetchurl, m4, perl, gfortran, texlive, ffmpeg, tk, gnused_422
, imagemagick, liblapack, python, openssl, libpng
2015-09-18 14:56:05 +01:00
, which
2014-04-22 20:10:36 +01:00
}:
stdenv.mkDerivation rec {
2015-09-18 14:56:05 +01:00
name = "sage-6.8";
2014-04-22 20:10:36 +01:00
src = fetchurl {
2016-08-29 13:46:51 +01:00
url = "http://old.files.sagemath.org/src-old/${name}.tar.gz";
2015-09-18 14:56:05 +01:00
sha256 = "102mrzzi215g1xn5zgcv501x9sghwg758jagx2jixvg1rj2jijj9";
2017-03-13 07:34:55 +00:00
2014-04-22 20:10:36 +01:00
};
2017-03-13 07:34:55 +00:00
buildInputs = [ m4 perl gfortran texlive.combined.scheme-basic ffmpeg gnused_422 tk imagemagick liblapack
python openssl libpng which ];
2015-09-18 14:56:05 +01:00
patches = [ ./spkg-singular.patch ./spkg-python.patch ./spkg-git.patch ];
2014-04-22 20:10:36 +01:00
enableParallelBuilding = true;
2016-08-29 13:46:51 +01:00
hardeningDisable = [ "format" ];
2014-04-22 20:10:36 +01:00
preConfigure = ''
export SAGE_NUM_THREADS=$NIX_BUILD_CORES
2015-09-18 14:56:05 +01:00
export SAGE_ATLAS_ARCH=fast
mkdir -p $out/sageHome
export HOME=$out/sageHome
2016-08-29 13:46:51 +01:00
export CPPFLAGS="-P"
2014-04-22 20:10:36 +01:00
'';
preBuild = "patchShebangs build";
2015-09-18 14:56:05 +01:00
installPhase = ''DESTDIR=$out make install'';
2014-04-22 20:10:36 +01:00
meta = {
homepage = "http://www.sagemath.org";
description = "A free open source mathematics software system";
license = stdenv.lib.licenses.gpl2Plus;
2017-03-30 10:35:36 +01:00
broken = true;
2014-04-22 20:10:36 +01:00
};
}