2010-02-15 18:10:25 +01:00
|
|
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
2014-01-07 19:02:01 +01:00
|
|
|
libX11, graphicsmagick, pcre, liblapack, pkgconfig, mesa, fltk,
|
|
|
|
fftw, fftwSinglePrec, zlib, curl, qrupdate
|
|
|
|
, qt ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
|
|
|
, suitesparse ? null, gnuplot ? null, openjdk ? null, python ? null
|
|
|
|
}:
|
2004-08-05 15:05:38 +02:00
|
|
|
|
2013-06-17 12:38:19 +02:00
|
|
|
let
|
2014-01-04 23:49:45 +01:00
|
|
|
version = "3.8.0";
|
2013-06-17 12:38:19 +02:00
|
|
|
in
|
2012-02-21 12:34:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-17 12:38:19 +02:00
|
|
|
name = "octave-${version}";
|
2004-08-05 15:05:38 +02:00
|
|
|
src = fetchurl {
|
2012-02-21 12:34:57 +01:00
|
|
|
url = "mirror://gnu/octave/${name}.tar.bz2";
|
2014-01-04 23:49:45 +01:00
|
|
|
sha256 = "1yclb8p4mcx9xcjajyynxfnc5spw90lp44d84v56ksrlvp3314si";
|
2004-08-05 15:05:38 +02:00
|
|
|
};
|
2012-02-21 12:34:57 +01:00
|
|
|
|
|
|
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
2013-03-17 21:17:12 +01:00
|
|
|
graphicsmagick pcre liblapack pkgconfig mesa fltk zlib curl
|
2014-01-07 19:02:01 +01:00
|
|
|
fftw fftwSinglePrec qrupdate ]
|
|
|
|
++ (stdenv.lib.optional (qt != null) qt)
|
|
|
|
++ (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)
|
|
|
|
++ (stdenv.lib.optional (openjdk != null) openjdk)
|
|
|
|
++ (stdenv.lib.optional (gnuplot != null) gnuplot)
|
|
|
|
++ (stdenv.lib.optional (python != null) python)
|
|
|
|
;
|
2012-02-21 12:34:57 +01:00
|
|
|
|
2014-01-06 22:00:03 +01:00
|
|
|
# there is a mysterious sh: command not found
|
|
|
|
doCheck = false;
|
2012-02-22 00:02:36 +01:00
|
|
|
|
2012-07-02 21:27:18 +02:00
|
|
|
/* The build failed with a missing libranlib.la in hydra,
|
|
|
|
but worked on my computer. I think they have concurrency problems */
|
|
|
|
enableParallelBuilding = false;
|
2012-02-21 12:34:57 +01:00
|
|
|
|
2012-02-21 16:45:22 +01:00
|
|
|
configureFlags = [ "--enable-readline" "--enable-dl" ];
|
2012-02-22 23:42:16 +01:00
|
|
|
|
|
|
|
# Keep a copy of the octave tests detailed results in the output
|
|
|
|
# derivation, because someone may care
|
|
|
|
postInstall = ''
|
2014-01-07 09:01:21 +01:00
|
|
|
cp test/fntests.log $out/share/octave/${name}-fntests.log || true
|
2012-02-22 23:42:16 +01:00
|
|
|
'';
|
2012-04-12 12:00:18 +02:00
|
|
|
|
2013-06-17 12:38:19 +02:00
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
sitePath = "share/octave/${version}/site";
|
|
|
|
};
|
|
|
|
|
2012-04-12 12:00:18 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://octave.org/;
|
|
|
|
license = "GPLv3+";
|
2014-01-07 19:02:01 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric raskin];
|
2012-04-12 12:00:18 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2004-08-05 15:05:38 +02:00
|
|
|
}
|