lib/generators: explicitly import names from lib.trivial

Everything else was already imported.
This commit is contained in:
Philip Taron
2024-03-06 16:27:00 -08:00
parent b83b8a3548
commit 3a01525ae7

View File

@@ -14,7 +14,7 @@
* Documentation in the manual, #sec-generators
*/
{ lib }:
with (lib).trivial;
let
inherit (builtins)
addErrorContext
@@ -25,6 +25,7 @@ let
filter
head
isAttrs
isBool
isFloat
isInt
isList
@@ -36,6 +37,7 @@ let
replaceStrings
split
tail
typeOf
;
inherit (lib.attrsets)
@@ -65,6 +67,8 @@ let
;
inherit (lib.trivial)
const
id
isFunction # Note: not the builtin, considers `__functor` in attrsets.
functionArgs # Note: not the builtin; considers `__functor` in attrsets.
;