2017-07-29 01:05:35 +01:00
|
|
|
{ lib }:
|
2009-11-19 17:30:21 +00:00
|
|
|
|
2023-11-26 23:14:54 +00:00
|
|
|
let
|
|
|
|
inherit (builtins)
|
|
|
|
intersectAttrs;
|
|
|
|
inherit (lib)
|
2023-12-02 22:28:17 +00:00
|
|
|
functionArgs isFunction mirrorFunctionArgs isAttrs setFunctionArgs
|
2023-12-03 03:49:22 +00:00
|
|
|
optionalAttrs attrNames filter elemAt concatStringsSep sort take length
|
2023-11-26 23:14:54 +00:00
|
|
|
filterAttrs optionalString flip pathIsDirectory head pipe isDerivation listToAttrs
|
|
|
|
mapAttrs seq flatten deepSeq warnIf isInOldestRelease extends
|
|
|
|
;
|
2023-12-03 03:49:22 +00:00
|
|
|
inherit (lib.strings) levenshtein levenshteinAtMost;
|
2023-11-26 23:14:54 +00:00
|
|
|
|
|
|
|
in
|
2009-11-19 17:30:21 +00:00
|
|
|
rec {
|
2009-11-19 16:43:58 +00:00
|
|
|
|
|
|
|
|
2023-01-01 21:51:54 +00:00
|
|
|
/* `overrideDerivation drv f` takes a derivation (i.e., the result
|
|
|
|
of a call to the builtin function `derivation`) and returns a new
|
2017-04-19 20:41:28 +01:00
|
|
|
derivation in which the attributes of the original are overridden
|
2023-01-01 21:51:54 +00:00
|
|
|
according to the function `f`. The function `f` is called with
|
2009-11-19 17:30:21 +00:00
|
|
|
the original derivation attributes.
|
2009-11-19 16:43:58 +00:00
|
|
|
|
2023-01-01 21:51:54 +00:00
|
|
|
`overrideDerivation` allows certain "ad-hoc" customisation
|
2017-02-01 15:03:42 +00:00
|
|
|
scenarios (e.g. in ~/.config/nixpkgs/config.nix). For instance,
|
|
|
|
if you want to "patch" the derivation returned by a package
|
|
|
|
function in Nixpkgs to build another version than what the
|
2023-10-20 13:57:10 +01:00
|
|
|
function itself provides.
|
2009-11-19 16:43:58 +00:00
|
|
|
|
|
|
|
For another application, see build-support/vm, where this
|
|
|
|
function is used to build arbitrary derivations inside a QEMU
|
2015-03-19 15:48:54 +00:00
|
|
|
virtual machine.
|
2022-12-06 17:51:29 +00:00
|
|
|
|
|
|
|
Note that in order to preserve evaluation errors, the new derivation's
|
|
|
|
outPath depends on the old one's, which means that this function cannot
|
|
|
|
be used in circular situations when the old derivation also depends on the
|
|
|
|
new one.
|
|
|
|
|
|
|
|
You should in general prefer `drv.overrideAttrs` over this function;
|
|
|
|
see the nixpkgs manual for more information on overriding.
|
2023-10-20 13:57:10 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
mySed = overrideDerivation pkgs.gnused (oldAttrs: {
|
|
|
|
name = "sed-4.2.2-pre";
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2;
|
|
|
|
hash = "sha256-MxBJRcM2rYzQYwJ5XKxhXTQByvSg5jZc5cSHEZoB2IY=";
|
|
|
|
};
|
|
|
|
patches = [];
|
|
|
|
});
|
|
|
|
|
|
|
|
Type:
|
|
|
|
overrideDerivation :: Derivation -> ( Derivation -> AttrSet ) -> Derivation
|
2015-03-19 15:48:54 +00:00
|
|
|
*/
|
2009-11-19 16:43:58 +00:00
|
|
|
overrideDerivation = drv: f:
|
|
|
|
let
|
2013-05-15 05:38:03 +01:00
|
|
|
newDrv = derivation (drv.drvAttrs // (f drv));
|
2023-11-26 23:14:54 +00:00
|
|
|
in flip (extendDerivation (seq drv.drvPath true)) newDrv (
|
2013-05-15 05:38:03 +01:00
|
|
|
{ meta = drv.meta or {};
|
2009-11-19 16:43:58 +00:00
|
|
|
passthru = if drv ? passthru then drv.passthru else {};
|
2012-01-19 22:29:26 +00:00
|
|
|
}
|
|
|
|
//
|
2013-05-15 05:38:03 +01:00
|
|
|
(drv.passthru or {})
|
|
|
|
//
|
2023-11-26 23:14:54 +00:00
|
|
|
optionalAttrs (drv ? __spliced) {
|
|
|
|
__spliced = {} // (mapAttrs (_: sDrv: overrideDerivation sDrv f) drv.__spliced);
|
2022-11-18 04:54:41 +00:00
|
|
|
});
|
2009-11-19 16:43:58 +00:00
|
|
|
|
|
|
|
|
2017-09-29 14:11:26 +01:00
|
|
|
/* `makeOverridable` takes a function from attribute set to attribute set and
|
2019-09-02 12:39:40 +01:00
|
|
|
injects `override` attribute which can be used to override arguments of
|
2017-09-29 14:11:26 +01:00
|
|
|
the function.
|
2017-06-24 11:42:56 +01:00
|
|
|
|
2023-10-20 20:11:21 +01:00
|
|
|
Please refer to documentation on [`<pkg>.overrideDerivation`](#sec-pkg-overrideDerivation) to learn about `overrideDerivation` and caveats
|
2023-10-20 13:57:10 +01:00
|
|
|
related to its use.
|
|
|
|
|
|
|
|
Example:
|
2017-06-24 11:42:56 +01:00
|
|
|
nix-repl> x = {a, b}: { result = a + b; }
|
|
|
|
|
|
|
|
nix-repl> y = lib.makeOverridable x { a = 1; b = 2; }
|
|
|
|
|
|
|
|
nix-repl> y
|
|
|
|
{ override = «lambda»; overrideDerivation = «lambda»; result = 3; }
|
|
|
|
|
|
|
|
nix-repl> y.override { a = 10; }
|
|
|
|
{ override = «lambda»; overrideDerivation = «lambda»; result = 12; }
|
|
|
|
|
2023-10-20 13:57:10 +01:00
|
|
|
Type:
|
|
|
|
makeOverridable :: (AttrSet -> a) -> AttrSet -> a
|
2017-06-24 11:42:56 +01:00
|
|
|
*/
|
2023-05-28 22:52:21 +01:00
|
|
|
makeOverridable = f:
|
|
|
|
let
|
|
|
|
# Creates a functor with the same arguments as f
|
2023-11-26 23:14:54 +00:00
|
|
|
mirrorArgs = mirrorFunctionArgs f;
|
2023-05-28 22:52:21 +01:00
|
|
|
in
|
|
|
|
mirrorArgs (origArgs:
|
|
|
|
let
|
2019-09-04 23:16:01 +01:00
|
|
|
result = f origArgs;
|
|
|
|
|
|
|
|
# Changes the original arguments with (potentially a function that returns) a set of new attributes
|
2023-11-26 23:14:54 +00:00
|
|
|
overrideWith = newArgs: origArgs // (if isFunction newArgs then newArgs origArgs else newArgs);
|
2019-09-04 23:06:22 +01:00
|
|
|
|
|
|
|
# Re-call the function but with different arguments
|
2023-05-28 22:52:21 +01:00
|
|
|
overrideArgs = mirrorArgs (newArgs: makeOverridable f (overrideWith newArgs));
|
2019-09-04 23:12:05 +01:00
|
|
|
# Change the result of the function call by applying g to it
|
2023-05-28 22:52:21 +01:00
|
|
|
overrideResult = g: makeOverridable (mirrorArgs (args: g (f args))) origArgs;
|
2017-09-29 14:11:26 +01:00
|
|
|
in
|
2023-11-26 23:14:54 +00:00
|
|
|
if isAttrs result then
|
2019-09-04 23:16:01 +01:00
|
|
|
result // {
|
|
|
|
override = overrideArgs;
|
|
|
|
overrideDerivation = fdrv: overrideResult (x: overrideDerivation x fdrv);
|
|
|
|
${if result ? overrideAttrs then "overrideAttrs" else null} = fdrv:
|
|
|
|
overrideResult (x: x.overrideAttrs fdrv);
|
|
|
|
}
|
2023-11-26 23:14:54 +00:00
|
|
|
else if isFunction result then
|
2019-09-04 23:16:01 +01:00
|
|
|
# Transform the result into a functor while propagating its arguments
|
2023-11-26 23:14:54 +00:00
|
|
|
setFunctionArgs result (functionArgs result) // {
|
2019-09-04 23:14:22 +01:00
|
|
|
override = overrideArgs;
|
|
|
|
}
|
2023-05-28 22:52:21 +01:00
|
|
|
else result);
|
2009-11-19 17:30:21 +00:00
|
|
|
|
2010-08-02 14:57:57 +01:00
|
|
|
|
2023-01-01 21:51:54 +00:00
|
|
|
/* Call the package function in the file `fn` with the required
|
2010-08-02 14:57:57 +01:00
|
|
|
arguments automatically. The function is called with the
|
2023-01-01 21:51:54 +00:00
|
|
|
arguments `args`, but any missing arguments are obtained from
|
|
|
|
`autoArgs`. This function is intended to be partially
|
2010-08-02 14:57:57 +01:00
|
|
|
parameterised, e.g.,
|
|
|
|
|
2023-10-20 13:57:10 +01:00
|
|
|
```nix
|
2010-08-02 14:57:57 +01:00
|
|
|
callPackage = callPackageWith pkgs;
|
|
|
|
pkgs = {
|
|
|
|
libfoo = callPackage ./foo.nix { };
|
|
|
|
libbar = callPackage ./bar.nix { };
|
|
|
|
};
|
2023-10-20 13:57:10 +01:00
|
|
|
```
|
2010-08-02 14:57:57 +01:00
|
|
|
|
2023-01-01 21:51:54 +00:00
|
|
|
If the `libbar` function expects an argument named `libfoo`, it is
|
2010-08-02 14:57:57 +01:00
|
|
|
automatically passed as an argument. Overrides or missing
|
2023-01-01 21:51:54 +00:00
|
|
|
arguments can be supplied in `args`, e.g.
|
2010-08-02 14:57:57 +01:00
|
|
|
|
2023-10-20 13:57:10 +01:00
|
|
|
```nix
|
2010-08-02 14:57:57 +01:00
|
|
|
libbar = callPackage ./bar.nix {
|
|
|
|
libfoo = null;
|
|
|
|
enableX11 = true;
|
|
|
|
};
|
2023-10-20 13:57:10 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
<!-- TODO: Apply "Example:" tag to the examples above -->
|
|
|
|
|
|
|
|
Type:
|
|
|
|
callPackageWith :: AttrSet -> ((AttrSet -> a) | Path) -> AttrSet -> a
|
2010-08-02 14:57:57 +01:00
|
|
|
*/
|
|
|
|
callPackageWith = autoArgs: fn: args:
|
2017-09-29 14:11:26 +01:00
|
|
|
let
|
2023-11-26 23:14:54 +00:00
|
|
|
f = if isFunction fn then fn else import fn;
|
|
|
|
fargs = functionArgs f;
|
2020-07-25 18:54:37 +01:00
|
|
|
|
|
|
|
# All arguments that will be passed to the function
|
|
|
|
# This includes automatic ones and ones passed explicitly
|
2023-11-26 23:14:54 +00:00
|
|
|
allArgs = intersectAttrs fargs autoArgs // args;
|
2020-07-25 18:54:37 +01:00
|
|
|
|
2023-10-20 13:57:10 +01:00
|
|
|
# a list of argument names that the function requires, but
|
2020-07-25 18:54:37 +01:00
|
|
|
# wouldn't be passed to it
|
2023-11-26 23:28:52 +00:00
|
|
|
missingArgs =
|
2020-07-25 18:54:37 +01:00
|
|
|
# Filter out arguments that have a default value
|
2023-11-26 23:14:54 +00:00
|
|
|
(filterAttrs (name: value: ! value)
|
2020-07-25 18:54:37 +01:00
|
|
|
# Filter out arguments that would be passed
|
2023-11-26 23:14:54 +00:00
|
|
|
(removeAttrs fargs (attrNames allArgs)));
|
2020-07-25 18:54:37 +01:00
|
|
|
|
|
|
|
# Get a list of suggested argument names for a given missing one
|
2023-11-26 23:14:54 +00:00
|
|
|
getSuggestions = arg: pipe (autoArgs // args) [
|
|
|
|
attrNames
|
2020-07-25 18:54:37 +01:00
|
|
|
# Only use ones that are at most 2 edits away. While mork would work,
|
|
|
|
# levenshteinAtMost is only fast for 2 or less.
|
2023-11-26 23:14:54 +00:00
|
|
|
(filter (levenshteinAtMost 2 arg))
|
2020-07-25 18:54:37 +01:00
|
|
|
# Put strings with shorter distance first
|
2023-11-26 23:14:54 +00:00
|
|
|
(sort (x: y: levenshtein x arg < levenshtein y arg))
|
2020-07-25 18:54:37 +01:00
|
|
|
# Only take the first couple results
|
2023-11-26 23:14:54 +00:00
|
|
|
(take 3)
|
2020-07-25 18:54:37 +01:00
|
|
|
# Quote all entries
|
|
|
|
(map (x: "\"" + x + "\""))
|
|
|
|
];
|
|
|
|
|
|
|
|
prettySuggestions = suggestions:
|
|
|
|
if suggestions == [] then ""
|
2023-11-26 23:14:54 +00:00
|
|
|
else if length suggestions == 1 then ", did you mean ${elemAt suggestions 0}?"
|
|
|
|
else ", did you mean ${concatStringsSep ", " (lib.init suggestions)} or ${lib.last suggestions}?";
|
2020-07-25 18:54:37 +01:00
|
|
|
|
|
|
|
errorForArg = arg:
|
|
|
|
let
|
|
|
|
loc = builtins.unsafeGetAttrPos arg fargs;
|
|
|
|
# loc' can be removed once lib/minver.nix is >2.3.4, since that includes
|
|
|
|
# https://github.com/NixOS/nix/pull/3468 which makes loc be non-null
|
|
|
|
loc' = if loc != null then loc.file + ":" + toString loc.line
|
2023-11-26 23:14:54 +00:00
|
|
|
else if ! isFunction fn then
|
|
|
|
toString fn + optionalString (pathIsDirectory fn) "/default.nix"
|
2020-07-25 18:54:37 +01:00
|
|
|
else "<unknown location>";
|
|
|
|
in "Function called without required argument \"${arg}\" at "
|
|
|
|
+ "${loc'}${prettySuggestions (getSuggestions arg)}";
|
|
|
|
|
|
|
|
# Only show the error for the first missing argument
|
2023-12-02 22:28:17 +00:00
|
|
|
error = errorForArg (head (attrNames missingArgs));
|
2020-07-25 18:54:37 +01:00
|
|
|
|
2023-11-22 22:29:02 +00:00
|
|
|
in if missingArgs == {}
|
|
|
|
then makeOverridable f allArgs
|
|
|
|
else throw "lib.customisation.callPackageWith: ${error}";
|
2010-08-02 14:57:57 +01:00
|
|
|
|
2015-03-20 18:23:55 +00:00
|
|
|
|
2015-07-28 20:35:17 +01:00
|
|
|
/* Like callPackage, but for a function that returns an attribute
|
|
|
|
set of derivations. The override function is added to the
|
2023-10-20 13:57:10 +01:00
|
|
|
individual attributes.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
callPackagesWith :: AttrSet -> ((AttrSet -> AttrSet) | Path) -> AttrSet -> AttrSet
|
|
|
|
*/
|
2015-07-28 20:35:17 +01:00
|
|
|
callPackagesWith = autoArgs: fn: args:
|
|
|
|
let
|
2023-11-26 23:14:54 +00:00
|
|
|
f = if isFunction fn then fn else import fn;
|
|
|
|
auto = intersectAttrs (functionArgs f) autoArgs;
|
2017-02-12 13:57:42 +00:00
|
|
|
origArgs = auto // args;
|
|
|
|
pkgs = f origArgs;
|
2019-02-03 15:30:15 +00:00
|
|
|
mkAttrOverridable = name: _: makeOverridable (newArgs: (f newArgs).${name}) origArgs;
|
2020-03-04 10:58:03 +00:00
|
|
|
in
|
2023-11-26 23:14:54 +00:00
|
|
|
if isDerivation pkgs then throw
|
2020-03-04 10:58:03 +00:00
|
|
|
("function `callPackages` was called on a *single* derivation "
|
|
|
|
+ ''"${pkgs.name or "<unknown-name>"}";''
|
|
|
|
+ " did you mean to use `callPackage` instead?")
|
2023-11-26 23:14:54 +00:00
|
|
|
else mapAttrs mkAttrOverridable pkgs;
|
2015-07-28 20:35:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Add attributes to each output of a derivation without changing
|
2023-10-20 13:57:10 +01:00
|
|
|
the derivation itself and check a given condition when evaluating.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
extendDerivation :: Bool -> Any -> Derivation -> Derivation
|
|
|
|
*/
|
2017-12-25 18:06:49 +00:00
|
|
|
extendDerivation = condition: passthru: drv:
|
2013-03-24 12:29:10 +00:00
|
|
|
let
|
|
|
|
outputs = drv.outputs or [ "out" ];
|
|
|
|
|
2023-11-26 23:14:54 +00:00
|
|
|
commonAttrs = drv // (listToAttrs outputsList) //
|
2013-03-24 12:29:10 +00:00
|
|
|
({ all = map (x: x.value) outputsList; }) // passthru;
|
|
|
|
|
|
|
|
outputToAttrListElement = outputName:
|
|
|
|
{ name = outputName;
|
|
|
|
value = commonAttrs // {
|
2017-12-25 18:06:49 +00:00
|
|
|
inherit (drv.${outputName}) type outputName;
|
2021-10-15 15:30:58 +01:00
|
|
|
outputSpecified = true;
|
2017-12-25 18:06:49 +00:00
|
|
|
drvPath = assert condition; drv.${outputName}.drvPath;
|
|
|
|
outPath = assert condition; drv.${outputName}.outPath;
|
2022-11-19 10:40:46 +00:00
|
|
|
} //
|
|
|
|
# TODO: give the derivation control over the outputs.
|
|
|
|
# `overrideAttrs` may not be the only attribute that needs
|
|
|
|
# updating when switching outputs.
|
2023-11-26 23:14:54 +00:00
|
|
|
optionalAttrs (passthru?overrideAttrs) {
|
2022-11-19 10:40:46 +00:00
|
|
|
# TODO: also add overrideAttrs when overrideAttrs is not custom, e.g. when not splicing.
|
|
|
|
overrideAttrs = f: (passthru.overrideAttrs f).${outputName};
|
|
|
|
};
|
2013-03-24 12:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputsList = map outputToAttrListElement outputs;
|
2017-12-25 18:06:49 +00:00
|
|
|
in commonAttrs // {
|
|
|
|
drvPath = assert condition; drv.drvPath;
|
|
|
|
outPath = assert condition; drv.outPath;
|
|
|
|
};
|
2015-03-20 18:23:55 +00:00
|
|
|
|
|
|
|
/* Strip a derivation of all non-essential attributes, returning
|
|
|
|
only those needed by hydra-eval-jobs. Also strictly evaluate the
|
|
|
|
result to ensure that there are no thunks kept alive to prevent
|
2023-10-20 13:57:10 +01:00
|
|
|
garbage collection.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
hydraJob :: (Derivation | Null) -> (Derivation | Null)
|
|
|
|
*/
|
2015-03-20 18:23:55 +00:00
|
|
|
hydraJob = drv:
|
|
|
|
let
|
|
|
|
outputs = drv.outputs or ["out"];
|
|
|
|
|
|
|
|
commonAttrs =
|
|
|
|
{ inherit (drv) name system meta; inherit outputs; }
|
2023-11-26 23:14:54 +00:00
|
|
|
// optionalAttrs (drv._hydraAggregate or false) {
|
2015-03-20 18:23:55 +00:00
|
|
|
_hydraAggregate = true;
|
2023-11-26 23:14:54 +00:00
|
|
|
constituents = map hydraJob (flatten drv.constituents);
|
2015-03-20 18:23:55 +00:00
|
|
|
}
|
2023-11-26 23:14:54 +00:00
|
|
|
// (listToAttrs outputsList);
|
2015-03-20 18:23:55 +00:00
|
|
|
|
|
|
|
makeOutput = outputName:
|
|
|
|
let output = drv.${outputName}; in
|
|
|
|
{ name = outputName;
|
|
|
|
value = commonAttrs // {
|
|
|
|
outPath = output.outPath;
|
|
|
|
drvPath = output.drvPath;
|
|
|
|
type = "derivation";
|
|
|
|
inherit outputName;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
outputsList = map makeOutput outputs;
|
|
|
|
|
2023-11-26 23:14:54 +00:00
|
|
|
drv' = (head outputsList).value;
|
2023-01-29 22:39:27 +00:00
|
|
|
in if drv == null then null else
|
2023-11-26 23:14:54 +00:00
|
|
|
deepSeq drv' drv';
|
2015-03-20 18:23:55 +00:00
|
|
|
|
2015-09-27 15:45:23 +01:00
|
|
|
/* Make a set of packages with a common scope. All packages called
|
2023-01-01 21:51:54 +00:00
|
|
|
with the provided `callPackage` will be evaluated with the same
|
2015-09-27 15:45:23 +01:00
|
|
|
arguments. Any package in the set may depend on any other. The
|
2018-09-23 16:07:35 +01:00
|
|
|
`overrideScope'` function allows subsequent modification of the package
|
2015-09-27 15:45:23 +01:00
|
|
|
set in a consistent way, i.e. all packages in the set will be
|
|
|
|
called with the overridden packages. The package sets may be
|
|
|
|
hierarchical: the packages in the set are called with the scope
|
2023-01-01 21:51:54 +00:00
|
|
|
provided by `newScope` and the set provides a `newScope` attribute
|
2023-10-20 13:57:10 +01:00
|
|
|
which can form the parent scope for later package sets.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
makeScope :: (AttrSet -> ((AttrSet -> a) | Path) -> AttrSet -> a) -> (AttrSet -> AttrSet) -> AttrSet
|
|
|
|
*/
|
2015-09-27 15:45:23 +01:00
|
|
|
makeScope = newScope: f:
|
|
|
|
let self = f self // {
|
|
|
|
newScope = scope: newScope (self // scope);
|
|
|
|
callPackage = self.newScope {};
|
2023-11-26 23:14:54 +00:00
|
|
|
overrideScope = g: makeScope newScope (extends g f);
|
2023-08-13 23:42:25 +01:00
|
|
|
# Remove after 24.11 is released.
|
2023-11-26 23:14:54 +00:00
|
|
|
overrideScope' = g: warnIf (isInOldestRelease 2311)
|
2023-08-13 23:42:25 +01:00
|
|
|
"`overrideScope'` (from `lib.makeScope`) has been renamed to `overrideScope`."
|
2023-11-26 23:14:54 +00:00
|
|
|
(makeScope newScope (extends g f));
|
2017-02-26 00:58:53 +00:00
|
|
|
packages = f;
|
2015-09-27 15:45:23 +01:00
|
|
|
};
|
|
|
|
in self;
|
|
|
|
|
2023-08-14 00:47:59 +01:00
|
|
|
/* backward compatibility with old uncurried form; deprecated */
|
|
|
|
makeScopeWithSplicing =
|
|
|
|
splicePackages: newScope: otherSplices: keep: extra: f:
|
2023-08-21 17:57:34 +01:00
|
|
|
makeScopeWithSplicing'
|
|
|
|
{ inherit splicePackages newScope; }
|
|
|
|
{ inherit otherSplices keep extra f; };
|
2023-08-14 00:47:59 +01:00
|
|
|
|
2023-08-21 17:57:34 +01:00
|
|
|
/* Like makeScope, but aims to support cross compilation. It's still ugly, but
|
2023-10-20 13:57:10 +01:00
|
|
|
hopefully it helps a little bit.
|
|
|
|
|
|
|
|
Type:
|
|
|
|
makeScopeWithSplicing' ::
|
|
|
|
{ splicePackages :: Splice -> AttrSet
|
|
|
|
, newScope :: AttrSet -> ((AttrSet -> a) | Path) -> AttrSet -> a
|
|
|
|
}
|
|
|
|
-> { otherSplices :: Splice, keep :: AttrSet -> AttrSet, extra :: AttrSet -> AttrSet }
|
|
|
|
-> AttrSet
|
|
|
|
|
|
|
|
Splice ::
|
|
|
|
{ pkgsBuildBuild :: AttrSet
|
|
|
|
, pkgsBuildHost :: AttrSet
|
|
|
|
, pkgsBuildTarget :: AttrSet
|
|
|
|
, pkgsHostHost :: AttrSet
|
|
|
|
, pkgsHostTarget :: AttrSet
|
|
|
|
, pkgsTargetTarget :: AttrSet
|
|
|
|
}
|
|
|
|
*/
|
2023-08-14 00:47:59 +01:00
|
|
|
makeScopeWithSplicing' =
|
|
|
|
{ splicePackages
|
|
|
|
, newScope
|
|
|
|
}:
|
|
|
|
{ otherSplices
|
2023-11-02 15:47:02 +00:00
|
|
|
# Attrs from `self` which won't be spliced.
|
|
|
|
# Avoid using keep, it's only used for a python hook workaround, added in PR #104201.
|
|
|
|
# ex: `keep = (self: { inherit (self) aAttr; })`
|
2023-08-14 00:47:59 +01:00
|
|
|
, keep ? (_self: {})
|
2023-11-02 15:47:02 +00:00
|
|
|
# Additional attrs to add to the sets `callPackage`.
|
|
|
|
# When the package is from a subset (but not a subset within a package IS #211340)
|
|
|
|
# within `spliced0` it will be spliced.
|
|
|
|
# When using an package outside the set but it's available from `pkgs`, use the package from `pkgs.__splicedPackages`.
|
|
|
|
# If the package is not available within the set or in `pkgs`, such as a package in a let binding, it will not be spliced
|
|
|
|
# ex:
|
|
|
|
# ```
|
|
|
|
# nix-repl> darwin.apple_sdk.frameworks.CoreFoundation
|
|
|
|
# «derivation ...CoreFoundation-11.0.0.drv»
|
|
|
|
# nix-repl> darwin.CoreFoundation
|
|
|
|
# error: attribute 'CoreFoundation' missing
|
|
|
|
# nix-repl> darwin.callPackage ({ CoreFoundation }: CoreFoundation) { }
|
|
|
|
# «derivation ...CoreFoundation-11.0.0.drv»
|
|
|
|
# ```
|
2023-08-14 00:47:59 +01:00
|
|
|
, extra ? (_spliced0: {})
|
|
|
|
, f
|
|
|
|
}:
|
2020-11-18 17:12:34 +00:00
|
|
|
let
|
2021-05-04 05:08:20 +01:00
|
|
|
spliced0 = splicePackages {
|
2020-11-18 17:12:34 +00:00
|
|
|
pkgsBuildBuild = otherSplices.selfBuildBuild;
|
|
|
|
pkgsBuildHost = otherSplices.selfBuildHost;
|
|
|
|
pkgsBuildTarget = otherSplices.selfBuildTarget;
|
|
|
|
pkgsHostHost = otherSplices.selfHostHost;
|
|
|
|
pkgsHostTarget = self; # Not `otherSplices.selfHostTarget`;
|
|
|
|
pkgsTargetTarget = otherSplices.selfTargetTarget;
|
2021-05-04 05:08:20 +01:00
|
|
|
};
|
|
|
|
spliced = extra spliced0 // spliced0 // keep self;
|
2020-11-18 17:12:34 +00:00
|
|
|
self = f self // {
|
|
|
|
newScope = scope: newScope (spliced // scope);
|
|
|
|
callPackage = newScope spliced; # == self.newScope {};
|
|
|
|
# N.B. the other stages of the package set spliced in are *not*
|
|
|
|
# overridden.
|
2023-08-14 00:47:59 +01:00
|
|
|
overrideScope = g: (makeScopeWithSplicing'
|
|
|
|
{ inherit splicePackages newScope; }
|
|
|
|
{ inherit otherSplices keep extra;
|
2023-11-26 23:14:54 +00:00
|
|
|
f = extends g f;
|
2023-08-14 00:47:59 +01:00
|
|
|
});
|
2020-11-18 17:12:34 +00:00
|
|
|
packages = f;
|
|
|
|
};
|
|
|
|
in self;
|
|
|
|
|
2009-11-19 16:43:58 +00:00
|
|
|
}
|