* An attribute `stdenv_32bit' that returns a stdenv capable of
building 32-bit binaries.
* grub: build on x86_64-linux.
svn path=/nixpkgs/trunk/; revision=12211
* glibc_multi: a wrapper that combines the 32-bit and 64-bit Glibcs.
This is necessary so that 64-bit GCC can find gnu/stubs-32.h and the
32-bit Glibc libraries.
To build glibc_multi on x86_64-linux, you still need either the
i686-linux Glibc derivation from a channel, or to have configured
Nix with support for forwarding the build to a i686-linux machine.
In the future this may become unnecessary by providing a prebuilt
binary of 32-bit Glibc somewhere (like the binaries used in the
stdenvLinux bootstrap).
* With glibc_multi, it becomes possible to build gcc with multilib
support (i.e. it builds 32-bit and 64-bit versions of libgcc,
libstdc++, etc.).
svn path=/nixpkgs/trunk/; revision=12203
bootstrap wasn't recycled in the final allPackages, causing an
additional glibc to be built for packages that explicitly depend on
glibc.
svn path=/nixpkgs/trunk/; revision=12200
libstdc++ headers in the header search path, otherwise libstdc++'s
use of #include_next to include Glibc headers breaks.
svn path=/nixpkgs/trunk/; revision=12195
* Fixes to make par2cmdline and exult build on gcc 4.x, since gcc
3.4.x doesn't seem to work on x86_64-linux (NIXPKGS-91).
* Disabled pidgin on x86_64-linux because it needs a dynamic libperl
which we don't have right now.
* Disabled wine on x86_64-linux because we still lack -m32 support.
svn path=/nixpkgs/trunk/; revision=12187
(building the Apache modules, building various language bindings).
* Neon 0.28.2. Also kept Neon 0.26.x because Subversion 1.4.x needs
it.
svn path=/nixpkgs/trunk/; revision=12162
Scons is not only a tool, it's also a python library. However, the
modules are installed in ~/.nix-profile/lib/scons-${version} -- not in
python's "site-packages" directory -- so python won't find the library
without further help. Maybe there should be a symlink in nix-profile? I
guess there should, but I didn't know how to write that into the
expression.
svn path=/nixpkgs/trunk/; revision=12157
This commit also adds the combinator 'getPkgConfig', which ADNS uses to
let the user enable/disable static linking of the library. The behavior
of the adns expression can be customized in ~/.nixpkgs/config.nix by
setting, i.e., "adns = { version = "1.4"; static = true; };".
svn path=/nixpkgs/trunk/; revision=12155