example:
let pkgs = {
postfix = "postfix";
}; in
rec {
config = {
extraPackages = (with pkgs; [ postfix ]);
};
postfix = "dummy";
}.config
results in
|| Attrs([Bind("extraPackages",List([Str("dummy",[])]),NoPos)])
I would have expected postfix beeing taken from pkgs here!
the way it is just feels wrong to me.
Should we change this?
Marc Weber
_______________________________________________
nix-dev mailing list
[email protected]
https://mail.cs.uu.nl/mailman/listinfo/nix-dev
