unixtools: add killall
This commit is contained in:
parent
c672e37f4a
commit
bceb29f177
@ -21731,7 +21731,7 @@ with pkgs;
|
|||||||
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
|
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
|
||||||
inherit (unixtools) hexdump ps logger eject umount
|
inherit (unixtools) hexdump ps logger eject umount
|
||||||
mount wall hostname more sysctl getconf
|
mount wall hostname more sysctl getconf
|
||||||
getent locale;
|
getent locale killall;
|
||||||
|
|
||||||
fts = if hostPlatform.isMusl then netbsd.fts else null;
|
fts = if hostPlatform.isMusl then netbsd.fts else null;
|
||||||
|
|
||||||
|
@ -81,6 +81,10 @@ let
|
|||||||
linux = pkgs.nettools;
|
linux = pkgs.nettools;
|
||||||
darwin = pkgs.darwin.network_cmds;
|
darwin = pkgs.darwin.network_cmds;
|
||||||
};
|
};
|
||||||
|
killall = {
|
||||||
|
linux = pkgs.psmisc;
|
||||||
|
darwin = pkgs.darwin.shell_cmds;
|
||||||
|
};
|
||||||
locale = {
|
locale = {
|
||||||
linux = pkgs.glibc;
|
linux = pkgs.glibc;
|
||||||
darwin = pkgs.netbsd.locale;
|
darwin = pkgs.netbsd.locale;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user