diff options
| author | Silvan Mosberger <silvan.mosberger@tweag.io> | 2024-06-20 18:54:32 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-22 08:56:51 +0000 |
| commit | 3a1221a0f79a663a1db8b4fc1fc4031299497fbd (patch) | |
| tree | 3f5f99e4e54abb69af005bf5fdfbc24479373993 | |
| parent | lib.isList: inherit from lib.lists (diff) | |
| download | nixpkgs-3a1221a0f79a663a1db8b4fc1fc4031299497fbd.tar.gz | |
lib.isString: inherit from lib.strings
(cherry picked from commit 94a863973a82c16357d6680d361b008a8de608b4)
| -rw-r--r-- | lib/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix index a6b7b596871b..6228935965b0 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -66,7 +66,7 @@ let inherit (builtins) addErrorContext genericClosure getAttr - isPath isString + isPath pathExists readFile replaceStrings trace; inherit (self.trivial) id const pipe concat or and xor bitAnd bitOr bitXor @@ -96,7 +96,7 @@ let subtractLists mutuallyExclusive groupBy groupBy' concatLists genList length head tail elem elemAt isList; inherit (self.strings) concatStrings concatMapStrings concatImapStrings - stringLength substring + stringLength substring isString intersperse concatStringsSep concatMapStringsSep concatImapStringsSep concatLines makeSearchPath makeSearchPathOutput makeLibraryPath makeIncludePath makeBinPath optionalString |
