mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
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
This commit is contained in:
parent
024e71ec02
commit
a456ccb0c8
1 changed files with 3 additions and 0 deletions
|
@ -57,6 +57,9 @@ let
|
|||
escapeNixString
|
||||
isCoercibleToString
|
||||
;
|
||||
inherit (lib.trivial)
|
||||
boolToString
|
||||
;
|
||||
|
||||
inherit (lib.modules) mergeDefinitions;
|
||||
outer_types =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue