2020-11-11 03:36:19 +01:00
|
|
|
{ lib, ... }:
|
2017-05-30 00:09:52 +02:00
|
|
|
rec {
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Compute the fixed point of the given function `f`, which is usually an
|
|
|
|
attribute set that expects its final, non-recursive representation as an
|
|
|
|
argument:
|
|
|
|
|
|
|
|
```
|
|
|
|
f = self: { foo = "foo"; bar = "bar"; foobar = self.foo + self.bar; }
|
|
|
|
```
|
|
|
|
|
|
|
|
Nix evaluates this recursion until all references to `self` have been
|
|
|
|
resolved. At that point, the final result is returned and `f x = x` holds:
|
|
|
|
|
|
|
|
```
|
|
|
|
nix-repl> fix f
|
|
|
|
{ bar = "bar"; foo = "foo"; foobar = "foobar"; }
|
|
|
|
```
|
|
|
|
|
|
|
|
Type: fix :: (a -> a) -> a
|
|
|
|
|
|
|
|
See https://en.wikipedia.org/wiki/Fixed-point_combinator for further
|
|
|
|
details.
|
|
|
|
*/
|
2017-05-30 00:09:52 +02:00
|
|
|
fix = f: let x = f x; in x;
|
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
A variant of `fix` that records the original recursive attribute set in the
|
|
|
|
result, in an attribute named `__unfix__`.
|
|
|
|
|
|
|
|
This is useful in combination with the `extends` function to
|
|
|
|
implement deep overriding.
|
|
|
|
*/
|
2017-05-30 00:09:52 +02:00
|
|
|
fix' = f: let x = f x // { __unfix__ = f; }; in x;
|
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Return the fixpoint that `f` converges to when called iteratively, starting
|
|
|
|
with the input `x`.
|
|
|
|
|
|
|
|
```
|
|
|
|
nix-repl> converge (x: x / 2) 16
|
|
|
|
0
|
|
|
|
```
|
|
|
|
|
|
|
|
Type: (a -> a) -> a -> a
|
|
|
|
*/
|
2018-12-11 22:18:22 +01:00
|
|
|
converge = f: x:
|
2019-04-17 16:55:57 +02:00
|
|
|
let
|
|
|
|
x' = f x;
|
|
|
|
in
|
|
|
|
if x' == x
|
|
|
|
then x
|
|
|
|
else converge f x';
|
2018-12-11 22:18:22 +01:00
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
2023-08-09 23:41:22 +02:00
|
|
|
`extends overlay f` applies the overlay `overlay` to the fixed-point function `f` to get a new fixed-point function.
|
|
|
|
Overlays allow modifying and extending fixed-point functions, specifically ones returning attribute sets.
|
2023-07-08 18:43:36 +02:00
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
A fixed-point function is a function which is intended to be evaluated by passing the result of itself as the argument, only possible due to Nix's lazy evaluation.
|
|
|
|
Here's an example of one:
|
2023-07-08 18:43:36 +02:00
|
|
|
```
|
2023-08-09 23:41:22 +02:00
|
|
|
f = final: {
|
|
|
|
# Constant value a
|
|
|
|
a = 1;
|
2023-07-08 18:43:36 +02:00
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
# b depends on the final value of a, available as final.a
|
|
|
|
b = final.a + 2;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
We can evaluated this using [`lib.fix`](#function-library-lib.fixedPoints.fix) to get the final result:
|
|
|
|
```
|
|
|
|
fix f
|
|
|
|
=> { a = 1; b = 3; }
|
|
|
|
```
|
2023-07-08 18:43:36 +02:00
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
An overlay represents a modification or extension of such a fixed-point function.
|
|
|
|
Here's an example of an overlay:
|
2023-07-08 18:43:36 +02:00
|
|
|
```
|
2023-08-09 23:41:22 +02:00
|
|
|
overlay = final: prev: {
|
|
|
|
# Modify the previous value of a, available as prev.a
|
|
|
|
a = prev.a + 10;
|
|
|
|
|
|
|
|
# Extend the attribute set with c, letting it depend on the final values of a and b
|
|
|
|
c = final.a + final.b;
|
|
|
|
}
|
2023-07-08 18:43:36 +02:00
|
|
|
```
|
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
We can now use `extends overlay f` to apply the overlay to the fixed-point function `f`, giving us a new fixed-point function `g` with the combined behavior of `f` and `overlay`.
|
|
|
|
```
|
|
|
|
g = extends overlay f
|
|
|
|
```
|
|
|
|
The result is a function, so we can't print it directly, but it's the same as:
|
|
|
|
```
|
|
|
|
g = final: {
|
|
|
|
# The constant from f, but changed with the overlay
|
|
|
|
a = 1 + 10;
|
2023-07-08 18:43:36 +02:00
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
# Unchanged from f
|
|
|
|
b = final.a + 2;
|
|
|
|
|
|
|
|
# Extended in the overlay
|
|
|
|
c = final.a + final.b;
|
|
|
|
}
|
|
|
|
```
|
2023-07-08 18:43:36 +02:00
|
|
|
|
2023-08-09 23:41:22 +02:00
|
|
|
We can evaluate this using [`lib.fix`](#function-library-lib.fixedPoints.fix) again to get the final result:
|
2023-07-08 18:43:36 +02:00
|
|
|
```
|
2023-08-09 23:41:22 +02:00
|
|
|
fix g
|
|
|
|
=> { a = 11; b = 13; c = 24; }
|
2023-07-08 18:43:36 +02:00
|
|
|
```
|
|
|
|
*/
|
2017-05-30 00:09:52 +02:00
|
|
|
extends = f: rattrs: self: let super = rattrs self; in super // f self super;
|
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Compose two extending functions of the type expected by 'extends'
|
|
|
|
into one where changes made in the first are available in the
|
|
|
|
'super' of the second
|
|
|
|
*/
|
2017-05-30 00:09:52 +02:00
|
|
|
composeExtensions =
|
2021-08-26 15:12:17 +02:00
|
|
|
f: g: final: prev:
|
|
|
|
let fApplied = f final prev;
|
|
|
|
prev' = prev // fApplied;
|
|
|
|
in fApplied // g final prev';
|
2017-05-30 00:09:52 +02:00
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Compose several extending functions of the type expected by 'extends' into
|
|
|
|
one where changes made in preceding functions are made available to
|
|
|
|
subsequent ones.
|
|
|
|
|
|
|
|
```
|
|
|
|
composeManyExtensions : [packageSet -> packageSet -> packageSet] -> packageSet -> packageSet -> packageSet
|
|
|
|
^final ^prev ^overrides ^final ^prev ^overrides
|
|
|
|
```
|
|
|
|
*/
|
2020-11-11 03:36:19 +01:00
|
|
|
composeManyExtensions =
|
2021-08-26 15:12:17 +02:00
|
|
|
lib.foldr (x: y: composeExtensions x y) (final: prev: {});
|
2020-11-11 03:36:19 +01:00
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Create an overridable, recursive attribute set. For example:
|
|
|
|
|
|
|
|
```
|
|
|
|
nix-repl> obj = makeExtensible (self: { })
|
|
|
|
|
|
|
|
nix-repl> obj
|
|
|
|
{ __unfix__ = «lambda»; extend = «lambda»; }
|
|
|
|
|
|
|
|
nix-repl> obj = obj.extend (self: super: { foo = "foo"; })
|
|
|
|
|
|
|
|
nix-repl> obj
|
|
|
|
{ __unfix__ = «lambda»; extend = «lambda»; foo = "foo"; }
|
|
|
|
|
|
|
|
nix-repl> obj = obj.extend (self: super: { foo = super.foo + " + "; bar = "bar"; foobar = self.foo + self.bar; })
|
|
|
|
|
|
|
|
nix-repl> obj
|
|
|
|
{ __unfix__ = «lambda»; bar = "bar"; extend = «lambda»; foo = "foo + "; foobar = "foo + bar"; }
|
|
|
|
```
|
|
|
|
*/
|
2017-05-30 00:09:52 +02:00
|
|
|
makeExtensible = makeExtensibleWithCustomName "extend";
|
|
|
|
|
2023-07-08 18:43:36 +02:00
|
|
|
/*
|
|
|
|
Same as `makeExtensible` but the name of the extending attribute is
|
|
|
|
customized.
|
|
|
|
*/
|
2017-09-29 15:11:26 +02:00
|
|
|
makeExtensibleWithCustomName = extenderName: rattrs:
|
2023-01-15 19:56:07 +01:00
|
|
|
fix' (self: (rattrs self) // {
|
2017-09-29 15:11:26 +02:00
|
|
|
${extenderName} = f: makeExtensibleWithCustomName extenderName (extends f rattrs);
|
2023-01-15 19:56:07 +01:00
|
|
|
});
|
2017-05-30 00:09:52 +02:00
|
|
|
}
|