forked from mirrors/nixpkgs
octave fix
svn path=/nixpkgs/trunk/; revision=1512
This commit is contained in:
parent
21803cef64
commit
0795c7b0cc
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, g77, readline, ncurses}:
|
||||
{stdenv, fetchurl, g77, readline, ncurses, perl}:
|
||||
|
||||
assert readline != null && ncurses != null;
|
||||
assert g77.langF77;
|
||||
|
@ -9,6 +9,6 @@ stdenv.mkDerivation {
|
|||
url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-2.1.60.tar.bz2;
|
||||
md5 = "d332151ada009a14e4e4e37521a4ccfa";
|
||||
};
|
||||
buildInputs = [g77 readline ncurses];
|
||||
buildInputs = [g77 readline ncurses perl];
|
||||
configureFlags = "--enable-readline --enable-dl --disable-static --enable-shared";
|
||||
}
|
||||
|
|
|
@ -231,7 +231,7 @@ rec {
|
|||
};
|
||||
|
||||
octave = (import ../development/interpreters/octave) {
|
||||
inherit fetchurl stdenv readline ncurses g77;
|
||||
inherit fetchurl stdenv readline ncurses g77 perl;
|
||||
};
|
||||
|
||||
gnumake = (import ../development/tools/build-managers/gnumake) {
|
||||
|
|
Loading…
Reference in a new issue