2005-03-16 16:13:30 +01:00
|
|
|
{stdenv, fetchurl, g77, readline, ncurses, perl, flex}:
|
2004-08-05 15:05:38 +02:00
|
|
|
|
2005-03-16 16:13:30 +01:00
|
|
|
assert readline != null && ncurses != null && flex != null;
|
2004-08-05 15:05:38 +02:00
|
|
|
assert g77.langF77;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-03-16 08:49:07 +01:00
|
|
|
name = "octave-2.9.0";
|
2004-08-05 15:05:38 +02:00
|
|
|
src = fetchurl {
|
2005-04-11 15:09:01 +02:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/octave-2.9.0.tar.bz2;
|
2005-03-16 09:17:02 +01:00
|
|
|
md5 = "687a09033bc68f09810e947010bc8f29";
|
2004-08-05 15:05:38 +02:00
|
|
|
};
|
2005-03-16 16:13:30 +01:00
|
|
|
buildInputs = [g77 readline ncurses perl flex];
|
2004-09-08 16:23:18 +02:00
|
|
|
configureFlags = "--enable-readline --enable-dl --disable-static --enable-shared";
|
2004-08-05 15:05:38 +02:00
|
|
|
}
|