mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
* Fix some evaluation errors.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14960
This commit is contained in:
parent
71a16052ba
commit
b22899a7cb
|
@ -1,7 +1,6 @@
|
|||
{stdenv, fetchurl, g77, readline, ncurses, perl, flex}:
|
||||
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex}:
|
||||
|
||||
assert readline != null && ncurses != null && flex != null;
|
||||
assert g77.langFortran;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "octave-2.9.6";
|
||||
|
@ -9,6 +8,6 @@ stdenv.mkDerivation {
|
|||
url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-2.9.6.tar.bz2;
|
||||
md5 = "10f07dbc0951a7318502a9f1e51e6388";
|
||||
};
|
||||
buildInputs = [g77 readline ncurses perl flex];
|
||||
buildInputs = [gfortran readline ncurses perl flex];
|
||||
configureFlags = "--enable-readline --enable-dl --disable-static --enable-shared";
|
||||
}
|
||||
|
|
|
@ -2053,8 +2053,7 @@ let
|
|||
};
|
||||
|
||||
octave = import ../development/interpreters/octave {
|
||||
inherit stdenv fetchurl readline ncurses perl flex;
|
||||
g77 = gfortran;
|
||||
inherit stdenv fetchurl readline ncurses perl flex gfortran;
|
||||
};
|
||||
|
||||
# mercurial (hg) bleeding edge version
|
||||
|
|
|
@ -170,7 +170,7 @@ in {
|
|||
lhs2tex = ghcSupported;
|
||||
libsmbios = linux;
|
||||
libtool = all;
|
||||
libtool2 = all;
|
||||
libtool_2 = all;
|
||||
libxml2 = all;
|
||||
libxslt = all;
|
||||
lout = linux;
|
||||
|
@ -366,7 +366,7 @@ in {
|
|||
sdf = all;
|
||||
strategoxt = all;
|
||||
javafront = all;
|
||||
dryad = all;
|
||||
dryad = linux;
|
||||
};
|
||||
|
||||
xorg = {
|
||||
|
@ -384,7 +384,7 @@ in {
|
|||
xauth = linux;
|
||||
xf86inputkeyboard = linux;
|
||||
xf86inputmouse = linux;
|
||||
xf86videoi810 = linux;
|
||||
xf86videointel = linux;
|
||||
xf86videovesa = linux;
|
||||
xkbcomp = linux;
|
||||
xorgserver = linux;
|
||||
|
|
Loading…
Reference in a new issue