1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/13/callpackage-function.txt
Samuel Leathers 9977703fa8 port pill #13
2017-08-17 21:03:42 -04:00

6 lines
171 B
Plaintext

nix-repl> callPackage = set: f: f (builtins.intersectAttrs (builtins.functionArgs f) set)
nix-repl> callPackage values add
8
nix-repl> with values; add { inherit a b; }
8