about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorKeshav Kini <keshav.kini@gmail.com>2020-10-26 00:50:06 -0700
committerKeshav Kini <keshav.kini@gmail.com>2020-10-26 00:50:06 -0700
commita456ccb0c817a693e7f875e8159f0ec228a1d2d9 (patch)
treee4975605ae1e309f6c1f25c3ac66896ce3384ff5 /lib
parent024e71ec02f608c8e58e60bd4e30a6ca31e01a33 (diff)
lib/types.nix: fix missing inherit
I think there was a silent (i.e. semantic) merge conflict between PR #101139 and
PR #100456.  This commit should fix the error, which manifests as follows:

  error: undefined variable 'boolToString' at /home/kkini/src/nixpkgs/lib/types.nix:552:42
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 77f32f48ea2ad..ee891f8231b60 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -57,6 +57,9 @@ let
     escapeNixString
     isCoercibleToString
     ;
+  inherit (lib.trivial)
+    boolToString
+    ;
 
   inherit (lib.modules) mergeDefinitions;
   outer_types =