summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 13:28:23 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 15:59:13 +0100
commite0215b317544b2e44391720c4f23eea64f56c377 (patch)
tree202c97f599dd71c3f54d28832e8089b8bb24cf52
parent4015c5ca9c6ec7d4aa765c97b4413b478daa278b (diff)
lib/types: add description for functionTo
-rw-r--r--lib/types.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 77245158d9f8..d0a8e96149d7 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -454,7 +454,8 @@ rec {
};
functionTo = elemType: mkOptionType {
- name = "function that evaluates to a(n) ${elemType.name}";
+ name = "functionTo";
+ description = "function that evaluates to a(n) ${elemType.name}";
check = isFunction;
merge = loc: defs:
fnArgs: (mergeDefinitions (loc ++ [ "[function body]" ]) elemType (map (fn: { inherit (fn) file; value = fn.value fnArgs; }) defs)).mergedValue;