nixpkgs/pkgs
Peter Simons 7f0dc973f4 pkgs/top-level/all-packages.nix: prefer makeOverridable over getConfig to customize libc version
Previously, the getConfig variable 'brokenRedHatKernel' was used to switch back
to glibc 2.5, which fixes various run-time problems on Red Hat Linux. Now, the
same can be achieved by configuring

  {
    packageOverrides = pkgs:
    {
      glibc = pkgs.useFromStdenv "glibc" pkgs.glibc25;
    };
  }

in $NIXPKGS_CONFIG. Similarly, the argument 'installLocales' can be overridden
by setting:

  {
    packageOverrides = pkgs:
    {
      glibc = pkgs.useFromStdenv "glibc" (pkgs.glibc25.override { installLocales = true; });
    };
  }

svn path=/nixpkgs/trunk/; revision=21865
2010-05-19 12:25:54 +00:00
..
applications pkgs/applications/editors/emacs-23: Darwin builds require libXaw to avoid link-time errors 2010-05-19 12:25:31 +00:00
build-support releaseTools.coverageAnalysis: Add `lcovExtraTraceFiles' parameter. 2010-05-12 12:22:44 +00:00
configs/etc
data man-pages-3.24 2010-04-12 08:57:45 +00:00
desktops pkgs/desktops/gnome-2.28/default.nix: strip trailing white space 2010-05-19 12:25:41 +00:00
development Replace codegen script which was failing with EACCESS. Test Gajim build worked fine 2010-05-18 20:13:39 +00:00
games Three Games and Perl Support for Irssi 2010-05-17 09:21:42 +00:00
lib * The old evaluator segfaults if the `outPath' attribute is missing. 2010-05-12 13:24:09 +00:00
misc remove duplication in derivation adding tags to source 2010-05-09 14:17:24 +00:00
os-specific * NVIDIA drivers updated to 195.36.24. 2010-05-19 10:35:44 +00:00
servers * Revert to Samba 3.3.3 because never versions (including 3.3.12) 2010-05-04 15:26:34 +00:00
shells Add GNU SASL, GNU GSS-API, and GNU Rush. 2010-04-26 08:59:25 +00:00
stdenv Move "fetchurl restricted" code to requireFile. 2010-05-03 09:13:17 +00:00
test
tools pkgs/top-level/all-packages.nix: prefer makeOverridable over getPkgConfig to customize GNU plot 2010-05-19 12:25:51 +00:00
top-level pkgs/top-level/all-packages.nix: prefer makeOverridable over getConfig to customize libc version 2010-05-19 12:25:54 +00:00