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

assert autoconf != null && texinfo != null
  && bison != null && flex != null && gperf != null && readline != null && ncurses != null ;
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";
  };
  inherit autoconf g77 texinfo bison flex gperf readline;
  buildInputs = [autoconf g77 texinfo bison flex gperf readline ncurses] ;
}