about summary refs log tree commit diff
path: root/pkgs/applications/science/math/sage/default.nix
blob: 6e0b4313b47d7f8ed6f3645f3e5c2483b0bef887 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchurl, m4, perl, gfortran, texlive, ffmpeg, tk
, imagemagick, liblapack, python, openssl, libpng
, which
}:

stdenv.mkDerivation rec {
  name = "sage-6.8";

  src = fetchurl {
    url = "mirror://sagemath/${name}.tar.gz";
    sha256 = "102mrzzi215g1xn5zgcv501x9sghwg758jagx2jixvg1rj2jijj9";
  };

  buildInputs = [ m4 perl gfortran texlive.combined.scheme-basic ffmpeg tk imagemagick liblapack
                  python openssl libpng which];

  patches = [ ./spkg-singular.patch ./spkg-python.patch ./spkg-git.patch ];

  enableParallelBuilding = true;

  preConfigure = ''
    export SAGE_NUM_THREADS=$NIX_BUILD_CORES
    export SAGE_ATLAS_ARCH=fast
    mkdir -p $out/sageHome
    export HOME=$out/sageHome
  '';

  preBuild = "patchShebangs build";

  installPhase = ''DESTDIR=$out make install'';

  meta = {
    broken = true;
    homepage = "http://www.sagemath.org";
    description = "A free open source mathematics software system";
    license = stdenv.lib.licenses.gpl2Plus;
  };
}