1

Add help-closure to shell.nix

This commit is contained in:
2024-06-01 19:33:36 +02:00
parent 86d5a574b8
commit 89fd428fd1

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>))'";
}
];
}