Eelco Dolstra 4d7572e261 * Octave: use the generic builder. In particular the libraries are
now stripped which makes them much smaller.
* Octave: remove dependencies that are only necessary when building
  from CVS (bison, etc.).
* Octave: don't have a dependency on gcc, since that will cause
  *another* gcc to be build than the one in stdenv.

svn path=/nixpkgs/trunk/; revision=1262
2004-08-11 20:08:34 +00:00

15 lines
375 B
Nix

{stdenv, fetchurl, g77, readline, ncurses}:
assert readline != null && ncurses != null;
assert g77.langF77;
stdenv.mkDerivation {
name = "octave-2.1.57";
src = fetchurl {
url = ftp://ftp.octave.org/pub/octave/octave-2.1.57.tar.bz2;
md5 = "b781f5d0cd750cb9bb3ef23523f5f339";
};
buildInputs = [g77 readline ncurses];
configureFlags = "--enable-readline";
}