2010-02-15 18:10:25 +01:00
|
|
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
2012-02-21 23:09:48 +01:00
|
|
|
libX11, graphicsmagick, pcre, liblapack, texLive, pkgconfig, mesa, fltk,
|
2012-02-22 23:42:16 +01:00
|
|
|
fftw, fftwSinglePrec, zlib, curl, qrupdate }:
|
2004-08-05 15:05:38 +02:00
|
|
|
|
2012-02-21 12:34:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-03-08 17:24:37 +01:00
|
|
|
name = "octave-3.6.1";
|
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";
|
2012-03-08 17:24:37 +01:00
|
|
|
sha256 = "1xmd9rqpwzn6z808i3brw1w9lh083vpjg046cj4gg3qdazkkw1zq";
|
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
|
2012-02-21 23:09:48 +01:00
|
|
|
graphicsmagick pcre liblapack texLive pkgconfig mesa fltk zlib curl
|
2012-02-22 23:42:16 +01:00
|
|
|
fftw fftwSinglePrec qrupdate ];
|
2012-02-21 12:34:57 +01:00
|
|
|
|
2012-02-22 00:02:36 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2012-02-21 12:34:57 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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 = ''
|
|
|
|
cp test/fntests.log $out/share/octave/${name}-fntests.log
|
|
|
|
'';
|
2012-04-12 12:00:18 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://octave.org/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2004-08-05 15:05:38 +02:00
|
|
|
}
|