1

Add help-closure to shell.nix

This commit is contained in:
2024-06-01 19:33:36 +02:00
parent adcc104f8f
commit 49d769cad2

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