2014-08-29 15:40:16 +01:00
|
|
|
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
|
2019-11-07 16:30:37 +00:00
|
|
|
, libsndfile, portaudio, libX11, graphicsmagick, pcre, pkgconfig, libGL, libGLU, fltk
|
2016-07-15 22:17:35 +01:00
|
|
|
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
|
2014-08-21 01:08:19 +01:00
|
|
|
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
2016-09-06 18:56:58 +01:00
|
|
|
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null, overridePlatforms ? null
|
2014-01-07 18:02:01 +00:00
|
|
|
}:
|
2004-08-05 14:05:38 +01:00
|
|
|
|
2015-06-07 19:45:36 +01: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 {
|
2019-03-04 19:43:11 +00:00
|
|
|
version = "5.1.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "octave";
|
2004-08-05 14:05:38 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/octave/${pname}-${version}.tar.gz";
|
2019-03-04 19:43:11 +00:00
|
|
|
sha256 = "15blrldzwyxma16rnd4n01gnsrriii0dwmyca6m7qz62r8j12sz3";
|
2004-08-05 14:05:38 +01:00
|
|
|
};
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2016-10-24 01:54:18 +01: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 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)
|
2019-11-07 16:30:37 +00:00
|
|
|
++ (stdenv.lib.optionals (!stdenv.isDarwin) [ libGL libGLU libX11 ])
|
2014-01-07 18:02:01 +00:00
|
|
|
;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2017-04-09 07:10:54 +01: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
|
|
|
'';
|
|
|
|
|
2016-07-15 22:17:35 +01: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
|
|
|
|
2018-09-28 10:34:56 +01:00
|
|
|
# See https://savannah.gnu.org/bugs/?50339
|
|
|
|
F77_INTEGER_8_FLAG = if openblas.blas64 then "-fdefault-integer-8" else "";
|
|
|
|
|
2015-06-07 19:45:36 +01:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-readline"
|
|
|
|
"--enable-dl"
|
|
|
|
"--with-blas=openblas"
|
|
|
|
"--with-lapack=openblas"
|
|
|
|
]
|
2016-07-15 22:17:35 +01: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 = ''
|
2019-08-15 13:41:18 +01:00
|
|
|
cp test/fntests.log $out/share/octave/${pname}-${version}-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;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2018-09-28 10:34:56 +01:00
|
|
|
description = "Scientific Pragramming Language";
|
2016-09-06 18:56:58 +01:00
|
|
|
platforms = if overridePlatforms == null then
|
|
|
|
(with stdenv.lib.platforms; linux ++ darwin)
|
|
|
|
else overridePlatforms;
|
2012-04-12 11:00:18 +01:00
|
|
|
};
|
2004-08-05 14:05:38 +01:00
|
|
|
}
|