about summary refs log tree commit diff
path: root/pkgs/development/interpreters/octave
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-15 17:10:25 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-15 17:10:25 +0000
commit6c622c014dc3af58a8ea6a1810ffb8d507c9ac25 (patch)
tree380cb60df4095f197fc912545b5a9744b29d8d43 /pkgs/development/interpreters/octave
parente9ad76a2ffe6c6fa4b63287b86c2bb4ebee9807b (diff)
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
Diffstat (limited to 'pkgs/development/interpreters/octave')
-rw-r--r--pkgs/development/interpreters/octave/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index 5ac14a3628291..ea095706b223d 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,4 +1,5 @@
-{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull}:
+{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
+libX11}:
 
 stdenv.mkDerivation {
   name = "octave-3.2.4";
@@ -6,6 +7,6 @@ stdenv.mkDerivation {
     url = ftp://ftp.octave.org/pub/octave/octave-3.2.4.tar.bz2;
     sha256 = "0iyivx7qz7cvwz7qczqrl4ysqivlhn5ax92z9md0m77dqw2isis8";
   };
-  buildInputs = [gfortran readline ncurses perl flex texinfo qhull];
+  buildInputs = [gfortran readline ncurses perl flex texinfo qhull libX11];
   configureFlags = "--enable-readline --enable-dl";
 }