2014-08-29 14:40:16 +00:00
|
|
|
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
|
2018-02-24 13:12:44 +00:00
|
|
|
, libsndfile, portaudio, libX11, graphicsmagick, pcre, pkgconfig, libGLU_combined, fltk
|
2016-07-15 21:17:35 +00:00
|
|
|
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
|
2014-08-21 00:08:19 +00:00
|
|
|
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
2016-09-06 17:56:58 +00:00
|
|
|
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null, overridePlatforms ? null
|
2014-01-07 18:02:01 +00:00
|
|
|
}:
|
2004-08-05 13:05:38 +00:00
|
|
|
|
2015-06-07 18:45:36 +00:00
|
|
|
let
|
|
|
|
suitesparseOrig = suitesparse;
|
|
|
|
qrupdateOrig = qrupdate;
|
|
|
|
in
|
|
|
|
# integer width is determined by openblas, so all dependencies must be built
|
|
|
|
# with exactly the same openblas
|
|
|
|
let
|
|
|
|
suitesparse =
|
|
|
|
if suitesparseOrig != null then suitesparseOrig.override { inherit openblas; } else null;
|
|
|
|
qrupdate = if qrupdateOrig != null then qrupdateOrig.override { inherit openblas; } else null;
|
|
|
|
in
|
|
|
|
|
2012-02-21 11:34:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-20 14:12:19 +00:00
|
|
|
version = "4.2.2";
|
2013-06-17 10:38:19 +00:00
|
|
|
name = "octave-${version}";
|
2004-08-05 13:05:38 +00:00
|
|
|
src = fetchurl {
|
2017-01-08 22:17:37 +00:00
|
|
|
url = "mirror://gnu/octave/${name}.tar.gz";
|
2018-03-20 14:12:19 +00:00
|
|
|
sha256 = "0vkjfrpv7aikcn73bxqkph1qrhrdx7jqy193n8d8lwp7v2al7f3p";
|
2004-08-05 13:05:38 +00:00
|
|
|
};
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2016-10-24 00:54:18 +00:00
|
|
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull
|
|
|
|
graphicsmagick pcre pkgconfig fltk zlib curl openblas libsndfile fftw
|
2016-11-06 23:20:32 +00:00
|
|
|
fftwSinglePrec portaudio qrupdate arpack libwebp ]
|
2014-01-07 18:02:01 +00:00
|
|
|
++ (stdenv.lib.optional (qt != null) qt)
|
2014-08-21 00:08:19 +00: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)
|
2018-02-24 13:12:44 +00:00
|
|
|
++ (stdenv.lib.optionals (!stdenv.isDarwin) [ libGLU_combined libX11 ])
|
2014-01-07 18:02:01 +00:00
|
|
|
;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2017-04-09 06:10:54 +00:00
|
|
|
# makeinfo is required by Octave at runtime to display help
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace libinterp/corefcn/help.cc \
|
|
|
|
--replace 'Vmakeinfo_program = "makeinfo"' \
|
|
|
|
'Vmakeinfo_program = "${texinfo}/bin/makeinfo"'
|
|
|
|
''
|
2017-03-22 14:49:10 +00:00
|
|
|
# REMOVE ON VERSION BUMP
|
|
|
|
# Needed for Octave-4.2.1 on darwin. See https://savannah.gnu.org/bugs/?50234
|
2017-04-09 06:10:54 +00:00
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin ''
|
2017-03-22 14:49:10 +00:00
|
|
|
sed 's/inline file_stat::~file_stat () { }/file_stat::~file_stat () { }/' -i ./liboctave/system/file-stat.cc
|
|
|
|
'';
|
|
|
|
|
2016-07-15 21:17:35 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2012-02-21 23:02:36 +00:00
|
|
|
|
2016-03-24 10:47:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2015-06-07 18:45:36 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-readline"
|
|
|
|
"--enable-dl"
|
|
|
|
"--with-blas=openblas"
|
|
|
|
"--with-lapack=openblas"
|
|
|
|
]
|
2016-07-15 21:17:35 +00:00
|
|
|
++ stdenv.lib.optional openblas.blas64 "--enable-64"
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin ["--with-x=no"]
|
|
|
|
;
|
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 10:00:18 +00:00
|
|
|
|
2013-06-17 10:38:19 +00:00
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
sitePath = "share/octave/${version}/site";
|
|
|
|
};
|
|
|
|
|
2012-04-12 10:00:18 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://octave.org/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2016-09-06 17:56:58 +00:00
|
|
|
platforms = if overridePlatforms == null then
|
|
|
|
(with stdenv.lib.platforms; linux ++ darwin)
|
|
|
|
else overridePlatforms;
|
2012-04-12 10:00:18 +00:00
|
|
|
};
|
2004-08-05 13:05:38 +00:00
|
|
|
}
|