1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs
Eelco Dolstra 5e5eeedaa6 * Quick proof-of-concept of making it easy to override package
configuration options in ~/.nixpkgs/config.nix.  Example:

  {
    packageOverrides = pkgs: {
      subversion = pkgs.subversion.function (origArgs: {
        bdbSupport = false;
        pythonBindings = !origArgs.pythonBindings;
      });
    };
  }

  I.e. pkgs.subversion.function is the original function call to the
  Subversion function in all-packages.nix.

  This requires the "subversion" attribute to use makeOverridable,
  which stores the original function and function arguments in the
  "function" attribute of the result.

svn path=/nixpkgs/trunk/; revision=12728
2008-08-26 16:50:33 +00:00
..
applications
build-support * QEMU_SMBD_COMMAND is gone. 2008-08-26 11:39:10 +00:00
configs/etc
data
desktops
development Add recent versions of the Haskell libraries HTTP, HaXml, haxr, and haxr-th. Unfortunately, the latter library doesn't build successfully because of the following error: 2008-08-26 12:50:03 +00:00
games
lib
misc
os-specific/linux * Remove the QEMU_SMBD_COMMAND environment variable. Instead use 2008-08-26 11:28:13 +00:00
servers
shells
stdenv
test
tools
top-level * Quick proof-of-concept of making it easy to override package 2008-08-26 16:50:33 +00:00