lib/customisation: fix eval error (attribute "levenshtein" missing)

This commit is contained in:
Someone Serge 2023-12-03 03:49:22 +00:00
parent 6998cf86e9
commit a3006991c3
No known key found for this signature in database
GPG key ID: 7B0E3B1390D61DA4

View file

@ -5,11 +5,11 @@ let
intersectAttrs;
inherit (lib)
functionArgs isFunction mirrorFunctionArgs isAttrs setFunctionArgs
optionalAttrs attrNames levenshtein filter elemAt concatStringsSep sort take length
optionalAttrs attrNames filter elemAt concatStringsSep sort take length
filterAttrs optionalString flip pathIsDirectory head pipe isDerivation listToAttrs
mapAttrs seq flatten deepSeq warnIf isInOldestRelease extends
;
inherit (lib.strings) levenshteinAtMost;
inherit (lib.strings) levenshtein levenshteinAtMost;
in
rec {