nixpkgs/pkgs
Eelco Dolstra ed5011cc02 * Make sure that in an override like:
python = pkgs.python27Full;
    pythonBase = pkgs.python27Base;

  a build of (say) Firefox doesn't depend on python26 as well as
  python27.  This happens because python27Full has this line:

    inherit (xlibs) libX11 xproto;

  which causes python27Full to use libX11 from pkgsOrig, where the
  override hasn't been applied.  The solution is to change it to
  
    inherit (pkgs.xlibs) libX11 xproto;

  In the future, to prevent this, we should make all-packages.nix a
  non-rec set and require all package references to explicitly go
  through pkgs.<attr>.  (Then we can also drop the ugly __overrides
  language "feature".)

svn path=/nixpkgs/trunk/; revision=23203
2010-08-17 11:35:49 +00:00
..
applications xscreensaver: move hacks to default location, use stdenv, more deps 2010-08-13 14:06:23 +00:00
build-support * Make sure that if pathsToLink contains an element such as 2010-08-09 16:08:02 +00:00
data fetch terminus-fonts from debian, the origin url is broken 2010-08-12 05:59:01 +00:00
desktops Add kdetoys-4.5.0 2010-08-17 09:57:03 +00:00
development pkgs/development/python-modules/pygtk: move installed python code down one directory hierarchy so that $PYTHONPATH can be guessed 2010-08-17 10:18:17 +00:00
games svn path=/nixpkgs/trunk/; revision=22839 2010-08-01 15:14:33 +00:00
lib * Omit the "Defined by:" elements in the configuration.nix section of 2010-08-11 11:46:09 +00:00
misc * Added MESS, the Multi Emulator Super System. 2010-08-11 19:47:05 +00:00
os-specific Allow override options being required in kernel configuration.. Otherwise modifying significantly config via extraConfig becomes practically impossible. 2010-08-14 09:18:57 +00:00
servers * Synaptics driver 1.2.2. 2010-08-10 14:06:03 +00:00
shells
stdenv * CURL: build without scp support on Cygwin because libssh2 doesn't 2010-08-12 11:54:55 +00:00
test
tools Add ebook-tools-0.1.1 2010-08-16 12:40:03 +00:00
top-level * Make sure that in an override like: 2010-08-17 11:35:49 +00:00