While trying out nix & nix repl:
Welcome to Nix version 2.3.6. Type :? for help.
nix-repl> pkgs = import <nixpkgs> {}
nix-repl> builtins.typeOf pkgs
"set"
nix-repl> pkgs ? "firefox"
true
nix-repl> func = (n: pkgs ? "firefox")
nix-repl> func null
true
nix-repl> func = (n: pkgs ? n)
nix-repl> func "firefox"
false
I assumed that func "firefox"
would return true
.
What Nix paradigms or concepts explain why func "firefox"
returns false
in this example?
The thing you write after
?
is not an expression: it is an attribute path. This allows you to do powerful things likepkgs ? hello.src
which probes to see whetherpkgs
has an attribute namedhello
which has an attribute namedsrc
.When Nix evaluates
a ? b
, Nix just looks at the name "b", it does not consider whether "b" is a variable in the local context. Sopkgs ? n
is true if an only ifpkgs
is a set with a member that literally is named "n".Here is an example repl session that explores the issue. The last line shows a possible solution for what I think you are trying to do.