summary refs log tree commit diff
path: root/pkgs/development/interpreters/octave/default.nix
blob: 26c4fe5c36bd6b38cace86146deebb3663830401 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, g77, readline, ncurses, perl, flex}:

assert readline != null && ncurses != null && flex != null;
assert g77.langF77;

stdenv.mkDerivation {
  name = "octave-2.9.0";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/octave-2.9.0.tar.bz2;
    md5 = "687a09033bc68f09810e947010bc8f29";
  };
  buildInputs = [g77 readline ncurses perl flex];
  configureFlags = "--enable-readline --enable-dl --disable-static --enable-shared";
}