2010-02-15 17:10:25 +00:00
|
|
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
2012-02-21 22:09:48 +00:00
|
|
|
libX11, graphicsmagick, pcre, liblapack, texLive, pkgconfig, mesa, fltk,
|
2012-02-22 22:42:16 +00:00
|
|
|
fftw, fftwSinglePrec, zlib, curl, qrupdate }:
|
2004-08-05 14:05:38 +01:00
|
|
|
|
2013-06-17 11:38:19 +01:00
|
|
|
let
|
2014-01-04 22:49:45 +00:00
|
|
|
version = "3.8.0";
|
2013-06-17 11:38:19 +01:00
|
|
|
in
|
2012-02-21 11:34:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
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-01-04 22:49:45 +00:00
|
|
|
sha256 = "1yclb8p4mcx9xcjajyynxfnc5spw90lp44d84v56ksrlvp3314si";
|
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
|
2012-02-22 22:42:16 +00:00
|
|
|
fftw fftwSinglePrec qrupdate ];
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2012-02-21 23:02:36 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2012-07-02 20:27:18 +01: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 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 = ''
|
|
|
|
cp test/fntests.log $out/share/octave/${name}-fntests.log
|
|
|
|
'';
|
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/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2004-08-05 14:05:38 +01:00
|
|
|
}
|