add handy script to find gc_roots

This commit is contained in:
Dmitriy Kholkin 2024-02-06 20:23:43 +03:00
parent c75d2092f6
commit a6744d385c
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -0,0 +1,15 @@
#!/usr/bin/env sh
function find_store_path_gc_roots {
store_path="$(realpath $1)"
while IFS=' ' read -r gcroot derivation; do
if [[ ! $gcroot =~ ^/proc ]]; then
if nix-store -qR "$derivation" 2>/dev/null | grep -q "$store_path"; then
echo $gcroot
fi
fi
done < <(nix-store --gc --print-roots | awk '{print $1, $3}')
}
find_store_path_gc_roots "$@"