mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
lib/generators: explicitly import names from lib.trivial
Everything else was already imported.
This commit is contained in:
parent
b83b8a3548
commit
3a01525ae7
@ -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.
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user