mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
GNU: Add an `__overrides' parameter.
svn path=/nixpkgs/trunk/; revision=33584
This commit is contained in:
parent
f3f8040aaf
commit
e0ca8e74ff
|
@ -3,11 +3,15 @@
|
|||
args@{ fetchgit, stdenv, autoconf, automake, automake111x, libtool
|
||||
, texinfo, glibcCross, hurdPartedCross, libuuid, samba_light
|
||||
, gccCrossStageStatic, gccCrossStageFinal
|
||||
, forceBuildDrv, forceSystem, callPackage, platform, config, crossSystem }:
|
||||
, forceBuildDrv, forceSystem, callPackage, platform, config, crossSystem
|
||||
, __overrides ? {} }:
|
||||
|
||||
with args;
|
||||
|
||||
rec {
|
||||
# Allow callers to override elements of this attribute set.
|
||||
inherit __overrides;
|
||||
|
||||
hurdCross = forceBuildDrv(import ./hurd {
|
||||
inherit fetchgit stdenv autoconf libtool texinfo machHeaders
|
||||
mig glibcCross hurdPartedCross;
|
||||
|
|
Loading…
Reference in a new issue