1

Add help-closure to shell.nix

This commit is contained in:
2024-06-01 19:33:36 +02:00
parent 48b06a2ba9
commit 102cdf499d

View File

@ -136,5 +136,10 @@ pkgs.devshell.mkShell {
help = "Display the wanted dynamic libraries by a binary";
command = "echo 'ldd (readlink -f (which <arg>))'";
}
{
name = "help-closure";
help = "Display the closure of a package";
command = "echo 'nix path-info --recursive --size --closure-size --human-readable (readlink -f (which <arg>))'";
}
];
}