nixpkgs/pkgs/development/interpreters/octave/default.nix
Lluís Batlle i Rossell 6c622c014d octave wants x11 (I reported this to octave as a bug).
Maybe it got in from their recent fltk/gl attempts to make their own plotter.

svn path=/nixpkgs/trunk/; revision=20017
2010-02-15 17:10:25 +00:00

13 lines
420 B
Nix

{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
libX11}:
stdenv.mkDerivation {
name = "octave-3.2.4";
src = fetchurl {
url = ftp://ftp.octave.org/pub/octave/octave-3.2.4.tar.bz2;
sha256 = "0iyivx7qz7cvwz7qczqrl4ysqivlhn5ax92z9md0m77dqw2isis8";
};
buildInputs = [gfortran readline ncurses perl flex texinfo qhull libX11];
configureFlags = "--enable-readline --enable-dl";
}