e8ab3a7549
I saw I added it, but I can't remember why, and now I don't see what is it for. It gets into octave closure, so it's a bit annoying for its size.
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
|
libX11, graphicsmagick, pcre, liblapack, texLive, pkgconfig, mesa, fltk,
|
|
fftw, fftwSinglePrec, zlib, curl, qrupdate }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "octave-3.6.3";
|
|
src = fetchurl {
|
|
url = "mirror://gnu/octave/${name}.tar.bz2";
|
|
sha256 = "11i82vyf514rvdqcgdanw0ppvag8lcm6198rars0dd0w1xahjzg3";
|
|
};
|
|
|
|
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
|
|
graphicsmagick pcre liblapack pkgconfig mesa fltk zlib curl
|
|
fftw fftwSinglePrec qrupdate ];
|
|
|
|
doCheck = true;
|
|
|
|
/* The build failed with a missing libranlib.la in hydra,
|
|
but worked on my computer. I think they have concurrency problems */
|
|
enableParallelBuilding = false;
|
|
|
|
configureFlags = [ "--enable-readline" "--enable-dl" ];
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://octave.org/;
|
|
license = "GPLv3+";
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|