From 4c7d990badc4a6ef9adcffb0790902de94faa51e Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Mon, 29 Jan 2024 08:54:02 +0100 Subject: [PATCH] lib.types.attrTag: Provide declarations, definitions --- lib/tests/modules/types-attrTag.nix | 1 + lib/types.nix | 21 +++++++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/lib/tests/modules/types-attrTag.nix b/lib/tests/modules/types-attrTag.nix index b8b1dff21e19..43d71b3ae6ad 100644 --- a/lib/tests/modules/types-attrTag.nix +++ b/lib/tests/modules/types-attrTag.nix @@ -107,6 +107,7 @@ in # assert lib.foldl' (a: b: builtins.trace b a) true (lib.attrNames config.docs); assert config.docs."submodules..foo.bar".type == "signed integer"; assert config.docs."submodules..qux".type == "string"; + assert lib.length config.docs."merged..extensible".declarations == 2; true; }; } diff --git a/lib/types.nix b/lib/types.nix index 43c4b72ad350..02532a991e98 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -628,7 +628,16 @@ rec { (n: opt: builtins.addErrorContext "while checking that attrTag tag ${lib.strings.escapeNixIdentifier n} is an option with a type${inAttrPosSuffix args.tags n}" ( assert opt._type == "option"; - opt + opt // { + declarations = opt.declarations or ( + let pos = builtins.unsafeGetAttrPos n args.tags; + in if pos == null then [] else [ pos.file ] + ); + declarationPositions = opt.declarationPositions or ( + let pos = builtins.unsafeGetAttrPos n args.tags; + in if pos == null then [] else [ pos ] + ); + } )) args.tags; choicesStr = concatMapStringsSep ", " lib.strings.escapeNixIdentifier (attrNames tags); @@ -640,7 +649,10 @@ rec { mapAttrs (tagName: tagOption: { "${lib.showOption prefix}" = - tagOption // { loc = prefix ++ [ tagName ]; }; + tagOption // { + loc = prefix ++ [ tagName ]; + definitions = []; + }; }) tags; substSubModules = m: attrTagWith { tags = mapAttrs (n: opt: opt // { type = (opt.type or types.unspecified).substSubModules m; }) tags; }; @@ -685,6 +697,11 @@ rec { # It is also returned though, but use of the attribute seems rare? [tagName] [ (wrapOptionDecl a.tags.${tagName}) (wrapOptionDecl bOpt) ] + // { + # mergeOptionDecls is not idempotent in these attrs: + declarations = a.tags.${tagName}.declarations ++ bOpt.declarations; + declarationPositions = a.tags.${tagName}.declarations ++ bOpt.declarations; + } ) (builtins.intersectAttrs a.tags b.tags); };