in attribute set pattern matches. This allows defining a function
that takes *at least* the listed attributes, while ignoring
additional attributes. For instance,
{stdenv, fetchurl, fuse, ...}:
stdenv.mkDerivation {
...
};
defines a function that requires an attribute set that contains the
specified attributes but ignores others. The main advantage is that
we can then write in all-packages.nix
aefs = import ../bla/aefs pkgs;
instead of
aefs = import ../bla/aefs {
inherit stdenv fetchurl fuse;
};
This saves a lot of typing (not to mention not having to update
all-packages.nix with purely mechanical changes). It saves as much
typing as the "args: with args;" style, but has the advantage that
the function arguments are properly declared (not implicit in what
the body of the "with" uses).
19 lines
409 B
Nix
19 lines
409 B
Nix
let
|
|
|
|
f = args@{x, y, z}: x + args.y + z;
|
|
|
|
g = {x, y, z}@args: f args;
|
|
|
|
h = {x ? "d", y ? x, z ? args.x}@args: x + y + z;
|
|
|
|
i = args@args2: args.x + args2.y;
|
|
|
|
j = {x, y, z, ...}: x + y + z;
|
|
|
|
in
|
|
f {x = "a"; y = "b"; z = "c";} +
|
|
g {x = "x"; y = "y"; z = "z";} +
|
|
h {x = "D";} +
|
|
h {x = "D"; y = "E"; z = "F";} +
|
|
i {x = "g"; y = "h";} +
|
|
j {x = "i"; y = "j"; z = "k"; bla = "bla"; foo = "bar";}
|