That file was written once in 2008 and never updated since, and let's just say that a lot of things have changed since Change-Id: I66b0c87ecbba6ca653470966c9514edb21882ca3
16 lines
244 B
Nix
16 lines
244 B
Nix
let
|
|
|
|
foobar = "foobar";
|
|
|
|
in
|
|
|
|
{ xyzzy2 ? xyzzy # mutually recursive args
|
|
, xyzzy ? "blaat" # will be overridden by --argstr
|
|
, fb ? foobar
|
|
, lib # will be set by --arg
|
|
}:
|
|
|
|
{
|
|
result = lib.id (builtins.concatStringsSep "" [xyzzy xyzzy2 fb]);
|
|
}
|