pkgs:
with builtins;
with pkgs.lib;
{
  default = d: n: if isNull n then d else n;

  map = f: n: if isNull n then null else f n;
}