nix-learn/nix-language/Functions/nameAttributeSetArg.nix

3 lines
70 B
Nix

args@{ a,b,... }: a + b + args.c
# or
#{ a,b,...}@args: a + b + args.c