2010-02-15 09:10:25 -08:00
|
|
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
2012-02-21 14:09:48 -08:00
|
|
|
libX11, graphicsmagick, pcre, liblapack, texLive, pkgconfig, mesa, fltk,
|
2012-02-22 14:42:16 -08:00
|
|
|
fftw, fftwSinglePrec, zlib, curl, qrupdate }:
|
2004-08-05 06:05:38 -07:00
|
|
|
|
2013-06-17 03:38:19 -07:00
|
|
|
let
|
2014-01-04 14:49:45 -08:00
|
|
|
version = "3.8.0";
|
2013-06-17 03:38:19 -07:00
|
|
|
in
|
2012-02-21 03:34:57 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-17 03:38:19 -07:00
|
|
|
name = "octave-${version}";
|
2004-08-05 06:05:38 -07:00
|
|
|
src = fetchurl {
|
2012-02-21 03:34:57 -08:00
|
|
|
url = "mirror://gnu/octave/${name}.tar.bz2";
|
2014-01-04 14:49:45 -08:00
|
|
|
sha256 = "1yclb8p4mcx9xcjajyynxfnc5spw90lp44d84v56ksrlvp3314si";
|
2004-08-05 06:05:38 -07:00
|
|
|
};
|
2012-02-21 03:34:57 -08:00
|
|
|
|
|
|
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
2013-03-17 13:17:12 -07:00
|
|
|
graphicsmagick pcre liblapack pkgconfig mesa fltk zlib curl
|
2012-02-22 14:42:16 -08:00
|
|
|
fftw fftwSinglePrec qrupdate ];
|
2012-02-21 03:34:57 -08:00
|
|
|
|
2014-01-06 13:00:03 -08:00
|
|
|
# there is a mysterious sh: command not found
|
|
|
|
doCheck = false;
|
2012-02-21 15:02:36 -08:00
|
|
|
|
2012-07-02 12:27:18 -07: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 03:34:57 -08:00
|
|
|
|
2012-02-21 07:45:22 -08:00
|
|
|
configureFlags = [ "--enable-readline" "--enable-dl" ];
|
2012-02-22 14:42:16 -08: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 03:00:18 -07:00
|
|
|
|
2013-06-17 03:38:19 -07:00
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
sitePath = "share/octave/${version}/site";
|
|
|
|
};
|
|
|
|
|
2012-04-12 03:00:18 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://octave.org/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2004-08-05 06:05:38 -07:00
|
|
|
}
|