68ab0a0705
Change-Id: If202b466aa0874048e89e0dc270ff14883510131 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1652 Reviewed-by: edef <edef@edef.eu> Tested-by: BuildkiteCI
15 lines
522 B
Nix
15 lines
522 B
Nix
# this wraps import to override readFile and readDir to trace the files it touches
|
|
# technique inspired by lorri
|
|
let
|
|
|
|
global = {
|
|
import = global.scopedImport {};
|
|
scopedImport = x: builtins.scopedImport (global // x);
|
|
builtins = builtins // {
|
|
inherit (global) import scopedImport;
|
|
readFile = path: builtins.trace "depot-scan '${toString path}'" (builtins.readFile path);
|
|
readDir = path: builtins.trace "depot-scan '${toString path}'" (builtins.readDir path);
|
|
};
|
|
};
|
|
|
|
in global.import
|