nixpkgs/pkgs/top-level
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
..
all-packages.nix * Quick proof-of-concept of making it easy to override package 2008-08-26 16:50:33 +00:00
build-for-release.nix svn path=/nixpkgs/trunk/; revision=12724 2008-08-26 13:27:50 +00:00
builder-defs.nix A paranoia-induced refactoring, a cleanup of buildInputs bypass in font-related part, fix for builderDefsPackage for cleaner overrides. 2008-08-20 11:30:06 +00:00
mingw.nix * Remove execute permission. 2006-09-11 13:37:46 +00:00
template-composing-builder.nix Added xnee utility for X11 action recording 2008-08-14 09:25:26 +00:00
template-composing+config.nix * Tab removal. 2008-07-23 13:40:03 +00:00
template-debian.nix * mirror://debian: stripped the /pool part; there are other Debian 2008-03-13 13:31:39 +00:00
template-simple.nix Just another simple template 2007-09-04 09:52:29 +00:00