2004-08-06 14:34:04 +02:00
|
|
|
{ stdenv, fetchurl, autoconf, gcc, g77, texinfo, bison, flex, gperf, readline, ncurses}:
|
2004-08-05 15:05:38 +02:00
|
|
|
|
|
|
|
assert autoconf != null && texinfo != null
|
2004-08-05 17:30:06 +02:00
|
|
|
&& bison != null && flex != null && gperf != null && readline != null && ncurses != null ;
|
2004-08-05 15:05:38 +02:00
|
|
|
assert g77.langF77;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "octave-2.1.57";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-2.1.57.tar.gz ;
|
|
|
|
md5 = "a0171814e005ce6d77365e7d831eef45";
|
|
|
|
};
|
2004-08-06 14:34:04 +02:00
|
|
|
inherit autoconf gcc g77 texinfo bison flex gperf readline;
|
|
|
|
buildInputs = [autoconf gcc g77 texinfo bison flex gperf readline ncurses] ;
|
2004-08-05 15:05:38 +02:00
|
|
|
}
|