2009-04-09 05:19:57 -07:00
|
|
|
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull}:
|
2004-08-05 06:05:38 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-04-08 13:06:03 -07:00
|
|
|
name = "octave-3.0.4";
|
2004-08-05 06:05:38 -07:00
|
|
|
src = fetchurl {
|
2009-04-08 13:06:03 -07:00
|
|
|
url = ftp://ftp.octave.org/pub/octave/octave-3.0.4.tar.bz2;
|
|
|
|
sha256 = "1rkpzig0r0zrm73avxgai0zqkz9hv4js57i1xxdzcm22qw22szaj";
|
2004-08-05 06:05:38 -07:00
|
|
|
};
|
2009-04-09 05:19:57 -07:00
|
|
|
buildInputs = [gfortran readline ncurses perl flex texinfo qhull];
|
2004-09-08 07:23:18 -07:00
|
|
|
configureFlags = "--enable-readline --enable-dl --disable-static --enable-shared";
|
2004-08-05 06:05:38 -07:00
|
|
|
}
|