summary refs log tree commit diff
path: root/lib/types.nix
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-09-13 12:57:36 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-09-13 12:57:36 +0900
commitf9239053465d06a823268c962505d3327049f12a (patch)
treeebe01d0fefea742b899c26aea586524826248e9e /lib/types.nix
parent79f72966e66b4fd9b823901eafeffa35895bad6c (diff)
downloadnixlib-f9239053465d06a823268c962505d3327049f12a.tar
nixlib-f9239053465d06a823268c962505d3327049f12a.tar.gz
nixlib-f9239053465d06a823268c962505d3327049f12a.tar.bz2
nixlib-f9239053465d06a823268c962505d3327049f12a.tar.lz
nixlib-f9239053465d06a823268c962505d3327049f12a.tar.xz
nixlib-f9239053465d06a823268c962505d3327049f12a.tar.zst
nixlib-f9239053465d06a823268c962505d3327049f12a.zip
optionSet type: enable deprecation message
Diffstat (limited to 'lib/types.nix')
-rw-r--r--lib/types.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 83f624e6b448..991fa0e5c291 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -261,7 +261,7 @@ rec {
     # declarations from the ‘options’ attribute of containing option
     # declaration.
     optionSet = mkOptionType {
-      name = /* builtins.trace "types.optionSet is deprecated; use types.submodule instead" */ "option set";
+      name = builtins.trace "types.optionSet is deprecated; use types.submodule instead" "option set";
     };
 
     # Augment the given type with an additional type check function.