summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorRob Vermaas <rob.vermaas@gmail.com>2004-08-06 12:34:04 +0000
committerRob Vermaas <rob.vermaas@gmail.com>2004-08-06 12:34:04 +0000
commit7474f5713fcbe49a819d042f69ff73eed8a8c22a (patch)
tree1cc15765f95078207dcd18ec0b442a9125a84688 /pkgs/development/interpreters
parentae045f2569b6bf5822aca975a106f9e58c7138e3 (diff)
downloadnixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar.gz
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar.bz2
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar.lz
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar.xz
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.tar.zst
nixpkgs-7474f5713fcbe49a819d042f69ff73eed8a8c22a.zip
* forgot gcc dep for octave
svn path=/nixpkgs/trunk/; revision=1239
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/octave/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index 2af8e7e8a11..11fca46c00d 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoconf, g77, texinfo, bison, flex, gperf, readline, ncurses}:
+{ stdenv, fetchurl, autoconf, gcc, g77, texinfo, bison, flex, gperf, readline, ncurses}:
 
 assert autoconf != null && texinfo != null
   && bison != null && flex != null && gperf != null && readline != null && ncurses != null ;
@@ -11,6 +11,6 @@ stdenv.mkDerivation {
     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] ;
+  inherit autoconf gcc g77 texinfo bison flex gperf readline;
+  buildInputs = [autoconf gcc g77 texinfo bison flex gperf readline ncurses] ;
 }