2014-08-29 15:40:16 +01:00
|
|
|
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
|
|
|
|
, libX11, graphicsmagick, pcre, liblapack, pkgconfig, mesa, fltk
|
|
|
|
, fftw, fftwSinglePrec, zlib, curl, qrupdate
|
2014-08-21 01:08:19 +01:00
|
|
|
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
2015-01-01 23:49:20 +00:00
|
|
|
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null
|
2014-01-07 18:02:01 +00:00
|
|
|
}:
|
2004-08-05 14:05:38 +01:00
|
|
|
|
2012-02-21 11:34:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-29 15:40:16 +01:00
|
|
|
version = "3.8.2";
|
2013-06-17 11:38:19 +01:00
|
|
|
name = "octave-${version}";
|
2004-08-05 14:05:38 +01:00
|
|
|
src = fetchurl {
|
2012-02-21 11:34:57 +00:00
|
|
|
url = "mirror://gnu/octave/${name}.tar.bz2";
|
2014-08-29 15:40:16 +01:00
|
|
|
sha256 = "83bbd701aab04e7e57d0d5b8373dd54719bebb64ce0a850e69bf3d7454f33bae";
|
2004-08-05 14:05:38 +01:00
|
|
|
};
|
2012-02-21 11:34:57 +00:00
|
|
|
|
|
|
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
2013-03-17 20:17:12 +00:00
|
|
|
graphicsmagick pcre liblapack pkgconfig mesa fltk zlib curl
|
2014-01-07 18:02:01 +00:00
|
|
|
fftw fftwSinglePrec qrupdate ]
|
|
|
|
++ (stdenv.lib.optional (qt != null) qt)
|
2014-08-21 01:08:19 +01:00
|
|
|
++ (stdenv.lib.optional (qscintilla != null) qscintilla)
|
2014-01-07 18:02:01 +00:00
|
|
|
++ (stdenv.lib.optional (ghostscript != null) ghostscript)
|
|
|
|
++ (stdenv.lib.optional (llvm != null) llvm)
|
|
|
|
++ (stdenv.lib.optional (hdf5 != null) hdf5)
|
|
|
|
++ (stdenv.lib.optional (glpk != null) glpk)
|
|
|
|
++ (stdenv.lib.optional (suitesparse != null) suitesparse)
|
2015-01-01 23:49:20 +00:00
|
|
|
++ (stdenv.lib.optional (jdk != null) jdk)
|
2014-01-07 18:02:01 +00:00
|
|
|
++ (stdenv.lib.optional (gnuplot != null) gnuplot)
|
|
|
|
++ (stdenv.lib.optional (python != null) python)
|
|
|
|
;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2014-01-06 21:00:03 +00:00
|
|
|
# there is a mysterious sh: command not found
|
|
|
|
doCheck = false;
|
2012-02-21 23:02:36 +00:00
|
|
|
|
2015-02-27 11:55:49 +00:00
|
|
|
# problems on Hydra
|
|
|
|
enableParallelBuilding = false;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2012-02-21 15:45:22 +00:00
|
|
|
configureFlags = [ "--enable-readline" "--enable-dl" ];
|
2012-02-22 22:42:16 +00:00
|
|
|
|
|
|
|
# Keep a copy of the octave tests detailed results in the output
|
|
|
|
# derivation, because someone may care
|
|
|
|
postInstall = ''
|
2014-01-07 08:01:21 +00:00
|
|
|
cp test/fntests.log $out/share/octave/${name}-fntests.log || true
|
2012-02-22 22:42:16 +00:00
|
|
|
'';
|
2012-04-12 11:00:18 +01:00
|
|
|
|
2013-06-17 11:38:19 +01:00
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
sitePath = "share/octave/${version}/site";
|
|
|
|
};
|
|
|
|
|
2012-04-12 11:00:18 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://octave.org/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2014-01-07 18:02:01 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric raskin];
|
2012-04-12 11:00:18 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2004-08-05 14:05:38 +01:00
|
|
|
}
|