diff options
| author | Silvan Mosberger <silvan.mosberger@tweag.io> | 2024-06-20 18:58:03 +0200 |
|---|---|---|
| committer | Silvan Mosberger <silvan.mosberger@tweag.io> | 2024-06-20 22:48:54 +0200 |
| commit | 1e4f04d4d62701f5f8dfd37f3c535e8d2b2fbb97 (patch) | |
| tree | e2287de8a930d58a4870aa0ee3c1127f37a1a23b | |
| parent | lib.readFile: inherit from lib.trivial (diff) | |
| download | nixpkgs-1e4f04d4d62701f5f8dfd37f3c535e8d2b2fbb97.tar.gz | |
lib.replaceStrings: inherit from lib.strings
| -rw-r--r-- | lib/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix index 20a7cf93b370..5d98a58836f8 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -66,7 +66,6 @@ let inherit (builtins) addErrorContext isPath - replaceStrings trace; inherit (self.trivial) id const pipe concat or and xor bitAnd bitOr bitXor bitNot boolToString mergeAttrs flip mapNullable inNixShell isFloat min max @@ -96,7 +95,7 @@ let subtractLists mutuallyExclusive groupBy groupBy' concatLists genList length head tail elem elemAt isList; inherit (self.strings) concatStrings concatMapStrings concatImapStrings - stringLength substring isString + stringLength substring isString replaceStrings intersperse concatStringsSep concatMapStringsSep concatImapStringsSep concatLines makeSearchPath makeSearchPathOutput makeLibraryPath makeIncludePath makeBinPath optionalString |
