summary refs log tree commit diff
path: root/pkgs/development/libraries/java/gwt-widgets
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-26 16:50:33 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-26 16:50:33 +0000
commit5e5eeedaa6ce5a76dc82950c7e21dc237214be73 (patch)
treea16359064a27e64636c82787ad185ecf4817f3c7 /pkgs/development/libraries/java/gwt-widgets
parent6dbbd93d030f1d049c256e90a6525c5eddd49e7e (diff)
downloadnixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar.gz
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar.bz2
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar.lz
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar.xz
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.tar.zst
nixpkgs-5e5eeedaa6ce5a76dc82950c7e21dc237214be73.zip
* 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
Diffstat (limited to 'pkgs/development/libraries/java/gwt-widgets')
0 files changed, 0 insertions, 0 deletions