mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03: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
|
args@{ fetchgit, stdenv, autoconf, automake, automake111x, libtool
|
||||||
, texinfo, glibcCross, hurdPartedCross, libuuid, samba_light
|
, texinfo, glibcCross, hurdPartedCross, libuuid, samba_light
|
||||||
, gccCrossStageStatic, gccCrossStageFinal
|
, gccCrossStageStatic, gccCrossStageFinal
|
||||||
, forceBuildDrv, forceSystem, callPackage, platform, config, crossSystem }:
|
, forceBuildDrv, forceSystem, callPackage, platform, config, crossSystem
|
||||||
|
, __overrides ? {} }:
|
||||||
|
|
||||||
with args;
|
with args;
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
|
# Allow callers to override elements of this attribute set.
|
||||||
|
inherit __overrides;
|
||||||
|
|
||||||
hurdCross = forceBuildDrv(import ./hurd {
|
hurdCross = forceBuildDrv(import ./hurd {
|
||||||
inherit fetchgit stdenv autoconf libtool texinfo machHeaders
|
inherit fetchgit stdenv autoconf libtool texinfo machHeaders
|
||||||
mig glibcCross hurdPartedCross;
|
mig glibcCross hurdPartedCross;
|
||||||
|
Loading…
Reference in New Issue
Block a user