mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Fixing a trivial error in the glibc-2.11 longDescription, and fixing the
arguments for the ncurses expression. We should find a way to express a dependency in cross compilation of the style "cross-ncurses depends on having the native-ncurses". svn path=/nixpkgs/branches/stdenv-updates/; revision=18479
This commit is contained in:
parent
e1af625517
commit
7983251ce0
@ -95,7 +95,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
longDescription =
|
||||
'' Any Unix-like operating system needs a C library: the library which
|
||||
defines the ``system calls'' and other basic facilities such as
|
||||
defines the "system calls" and other basic facilities such as
|
||||
open, malloc, printf, exit...
|
||||
|
||||
The GNU C library is used as the C library in the GNU system and
|
||||
|
@ -3425,6 +3425,14 @@ let
|
||||
installLocales = getPkgConfig "glibc" "locales" false;
|
||||
};
|
||||
|
||||
glibc211Cross = cross : makeOverridable (import ../development/libraries/glibc-2.11) {
|
||||
inherit stdenv fetchurl cross;
|
||||
binutilsCross = binutilsCross cross;
|
||||
gccCross = gccCrossStageStatic cross;
|
||||
kernelHeaders = kernelHeadersCross cross;
|
||||
installLocales = getPkgConfig "glibc" "locales" false;
|
||||
};
|
||||
|
||||
glibcCross = cross: glibc29Cross cross;
|
||||
|
||||
eglibc = import ../development/libraries/eglibc {
|
||||
@ -4200,7 +4208,7 @@ let
|
||||
};
|
||||
|
||||
ncurses = makeOverridable (composedArgsAndFun (import ../development/libraries/ncurses)) {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
inherit fetchurl stdenv;
|
||||
# The "! (stdenv ? cross)" is for the cross-built arm ncurses, which
|
||||
# don't build for me in unicode.
|
||||
unicode = (system != "i686-cygwin" && ! (stdenv ? cross));
|
||||
|
Loading…
Reference in New Issue
Block a user