Util: Remove catText.

This commit is contained in:
Dmitry Voronin 2024-12-18 13:50:17 +03:00
parent 259c0b9b1f
commit 34fb3e5893

View file

@ -14,18 +14,12 @@
# List all files in a dir. # List all files in a dir.
ls = path: map (f: "${path}/${f}") (builtins.attrNames (builtins.readDir path)); ls = path: map (f: "${path}/${f}") (builtins.attrNames (builtins.readDir path));
# Concat all files by `text` key. # Concat all nix file content by `file` key.
# TODO: REMOVE
catText = files: args: builtins.foldl' (acc: mod: acc + (import mod args).text) "" files;
# Concat all file paths by `file` key.
# TODO: REMOVE
catFile = catFile =
files: args: files: args:
builtins.foldl' (acc: mod: acc + (builtins.readFile (import mod args).file) + "\n") "" files; builtins.foldl' (acc: mod: acc + (builtins.readFile (import mod args).file) + "\n") "" files;
# Concat all files as a set. # Concat all nix files as a set.
# TODO: REMOVE
catSet = catSet =
files: args: builtins.foldl' (acc: mod: acc // mod) { } (map (file: import file args) files); files: args: builtins.foldl' (acc: mod: acc // mod) { } (map (file: import file args) files);