mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
Co-authored-by: 𝑷𝒉𝒊𝒍𝒐𝒄𝒂𝒍𝒚𝒔𝒕 <regime_skylark.0y@icloud.com> Co-authored-by: adisbladis <adisbladis@gmail.com>
14 lines
366 B
Nu
Executable File
14 lines
366 B
Nu
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i nu -p nushell
|
|
cd $"($env.FILE_PWD)/../../.."
|
|
|
|
mkdir logs
|
|
nix-env -qaP -f . -A kdePackages --json --out-path | from json | values | par-each { |it|
|
|
echo $"Processing ($it.pname)..."
|
|
if "outputs" in $it {
|
|
try {
|
|
nix-store --read-log $it.outputs.out | save -f $"logs/($it.pname).log"
|
|
}
|
|
}
|
|
}
|