mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
* forgot gcc dep for octave
svn path=/nixpkgs/trunk/; revision=1239
This commit is contained in:
parent
ae045f2569
commit
7474f5713f
|
@ -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
|
assert autoconf != null && texinfo != null
|
||||||
&& bison != null && flex != null && gperf != null && readline != null && ncurses != 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 ;
|
url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-2.1.57.tar.gz ;
|
||||||
md5 = "a0171814e005ce6d77365e7d831eef45";
|
md5 = "a0171814e005ce6d77365e7d831eef45";
|
||||||
};
|
};
|
||||||
inherit autoconf g77 texinfo bison flex gperf readline;
|
inherit autoconf gcc g77 texinfo bison flex gperf readline;
|
||||||
buildInputs = [autoconf g77 texinfo bison flex gperf readline ncurses] ;
|
buildInputs = [autoconf gcc g77 texinfo bison flex gperf readline ncurses] ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,7 +199,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
octave = (import ../development/interpreters/octave) {
|
octave = (import ../development/interpreters/octave) {
|
||||||
inherit fetchurl stdenv autoconf g77 texinfo flex gperf readline ncurses;
|
inherit fetchurl stdenv autoconf gcc g77 texinfo flex gperf readline ncurses;
|
||||||
bison = bisonnew;
|
bison = bisonnew;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue